diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-05-30 19:15:16 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-05-30 19:15:16 (GMT) |
commit | 8c20916de21c839d0ffc16099e161ab8ca472dea (patch) | |
tree | 9f9201987e808b799c74014f00139f875d771a35 /Lib/distutils | |
parent | 5e2c5fa1bd9f0ed602ce2977c7c6772433c8de4d (diff) | |
download | cpython-8c20916de21c839d0ffc16099e161ab8ca472dea.zip cpython-8c20916de21c839d0ffc16099e161ab8ca472dea.tar.gz cpython-8c20916de21c839d0ffc16099e161ab8ca472dea.tar.bz2 |
Remove unneeded import
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/install_lib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 029528e..03b44ee 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -6,7 +6,6 @@ import sys, os, string from types import IntType from distutils.core import Command from distutils.errors import DistutilsOptionError -from distutils.dir_util import copy_tree class install_lib (Command): |