diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-09-11 16:31:53 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-09-11 16:31:53 (GMT) |
commit | fcd7353863c024bb87aabe7c4639ca8df692ac85 (patch) | |
tree | 8e25bd5d72391ff8ab8be6f6e381a1f356c8b901 /Lib/distutils/filelist.py | |
parent | 5f6228ed461987709c75dd3ebd253beb412ed457 (diff) | |
download | cpython-fcd7353863c024bb87aabe7c4639ca8df692ac85.zip cpython-fcd7353863c024bb87aabe7c4639ca8df692ac85.tar.gz cpython-fcd7353863c024bb87aabe7c4639ca8df692ac85.tar.bz2 |
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.
Diffstat (limited to 'Lib/distutils/filelist.py')
-rw-r--r-- | Lib/distutils/filelist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/filelist.py b/Lib/distutils/filelist.py index e2e2457..b4f3269 100644 --- a/Lib/distutils/filelist.py +++ b/Lib/distutils/filelist.py @@ -54,7 +54,7 @@ class FileList: """Print 'msg' to stdout if the global DEBUG (taken from the DISTUTILS_DEBUG environment variable) flag is true. """ - from distutils.core import DEBUG + from distutils.debug import DEBUG if DEBUG: print msg |