From fcd7353863c024bb87aabe7c4639ca8df692ac85 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Wed, 11 Sep 2002 16:31:53 +0000 Subject: Use distutils.debug.DEBUG instead of distutils.core.DEBUG. Note that distutils.core.DEBUG still works if client code uses it, but the core code avoids circular references by using distutils.debug. --- Lib/distutils/dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/distutils/dist.py') diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index f995d58e9a..92cb8320da 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -16,7 +16,7 @@ from distutils.errors import * from distutils.fancy_getopt import FancyGetopt, translate_longopt from distutils.util import check_environ, strtobool, rfc822_escape from distutils import log -from distutils.core import DEBUG +from distutils.debug import DEBUG # Regex to define acceptable Distutils command names. This is not *quite* # the same as a Python NAME -- I don't allow leading underscores. The fact -- cgit v1.2.1