diff options
author | Greg Ward <gward@python.net> | 2000-08-05 01:31:54 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-08-05 01:31:54 +0000 |
commit | ab3a0f36eded60acede255bb286688fcc17c5b01 (patch) | |
tree | 2ac22f41ae8d151d24edafcf562bfd8502ae2de3 /Lib/distutils/command/install.py | |
parent | 5a8aa1ba2e32b60f89838169bb774470d2727738 (diff) | |
download | cpython-git-ab3a0f36eded60acede255bb286688fcc17c5b01.tar.gz |
Fixed imports from '*util' modules to not just import everything from util.
Diffstat (limited to 'Lib/distutils/command/install.py')
-rw-r--r-- | Lib/distutils/command/install.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 1be49046ec..6385fdc224 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -10,7 +10,8 @@ import sys, os, string from types import * from distutils.core import Command, DEBUG from distutils import sysconfig -from distutils.util import write_file, convert_path, subst_vars, change_root +from distutils.file_util import write_file +from distutils.util import convert_path, subst_vars, change_root from distutils.errors import DistutilsOptionError from glob import glob |