summaryrefslogtreecommitdiff
path: root/command/bdist_dumb.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-08-05 01:31:54 +0000
committerGreg Ward <gward@python.net>2000-08-05 01:31:54 +0000
commit177d3705cc1ffcd1b068776baea88dd5f44259cb (patch)
tree5bb46d30af6f43177d6500ac10e2ee095d212820 /command/bdist_dumb.py
parent242c59cb2be299e3229b9bcde18dd47eff67fd4d (diff)
downloadpython-setuptools-git-177d3705cc1ffcd1b068776baea88dd5f44259cb.tar.gz
Fixed imports from '*util' modules to not just import everything from util.
Diffstat (limited to 'command/bdist_dumb.py')
-rw-r--r--command/bdist_dumb.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py
index 805aa0a9..e93c6b72 100644
--- a/command/bdist_dumb.py
+++ b/command/bdist_dumb.py
@@ -10,7 +10,8 @@ __revision__ = "$Id$"
import os
from distutils.core import Command
-from distutils.util import get_platform, create_tree, remove_tree
+from distutils.util import get_platform
+from distutils.dir_util import create_tree, remove_tree
from distutils.errors import *
class bdist_dumb (Command):