From ab3a0f36eded60acede255bb286688fcc17c5b01 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sat, 5 Aug 2000 01:31:54 +0000 Subject: Fixed imports from '*util' modules to not just import everything from util. --- Lib/distutils/command/bdist_dumb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/distutils/command/bdist_dumb.py') diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 805aa0a9eb..e93c6b7272 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/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): -- cgit v1.2.1