summaryrefslogtreecommitdiff
path: root/command/bdist_msi.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-04-17 08:48:32 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2007-04-17 08:48:32 +0000
commit57e9dc4a5d61c5572467c3fe69e816c357647a6f (patch)
tree3d5a6762bdc6872881f70fff537ac50636606dcc /command/bdist_msi.py
parenta67f7d4700f890ac5822401b756dc0b20a6eb421 (diff)
downloadpython-setuptools-git-57e9dc4a5d61c5572467c3fe69e816c357647a6f.tar.gz
Remove functions in string module that are also string methods. Also remove:
* all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
Diffstat (limited to 'command/bdist_msi.py')
-rw-r--r--command/bdist_msi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/command/bdist_msi.py b/command/bdist_msi.py
index 75db8773..f31bdeda 100644
--- a/command/bdist_msi.py
+++ b/command/bdist_msi.py
@@ -7,7 +7,7 @@
Implements the bdist_msi command.
"""
-import sys, os, string
+import sys, os
from distutils.core import Command
from distutils.util import get_platform
from distutils.dir_util import remove_tree