diff options
author | Greg Ward <gward@python.net> | 2000-08-05 01:31:54 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-08-05 01:31:54 (GMT) |
commit | ab3a0f36eded60acede255bb286688fcc17c5b01 (patch) | |
tree | 2ac22f41ae8d151d24edafcf562bfd8502ae2de3 /Lib/distutils/command/install_lib.py | |
parent | 5a8aa1ba2e32b60f89838169bb774470d2727738 (diff) | |
download | cpython-ab3a0f36eded60acede255bb286688fcc17c5b01.zip cpython-ab3a0f36eded60acede255bb286688fcc17c5b01.tar.gz cpython-ab3a0f36eded60acede255bb286688fcc17c5b01.tar.bz2 |
Fixed imports from '*util' modules to not just import everything from util.
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r-- | Lib/distutils/command/install_lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 1c15db1..879a7d0 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -4,7 +4,7 @@ __revision__ = "$Id$" import sys, os, string from distutils.core import Command -from distutils.util import copy_tree +from distutils.dir_util import copy_tree class install_lib (Command): |