commit | ab3a0f36eded60acede255bb286688fcc17c5b01 | [log] [tgz] |
---|---|---|
author | Greg Ward <gward@python.net> | Sat Aug 05 01:31:54 2000 +0000 |
committer | Greg Ward <gward@python.net> | Sat Aug 05 01:31:54 2000 +0000 |
tree | 2ac22f41ae8d151d24edafcf562bfd8502ae2de3 | |
parent | 5a8aa1ba2e32b60f89838169bb774470d2727738 [diff] [blame] |
Fixed imports from '*util' modules to not just import everything from util.
diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py index 31147b5..1d8c7b2 100644 --- a/Lib/distutils/command/clean.py +++ b/Lib/distutils/command/clean.py
@@ -8,7 +8,7 @@ import os from distutils.core import Command -from distutils.util import remove_tree +from distutils.dir_util import remove_tree class clean (Command):