diff options
author | PJ Eby <distutils-sig@python.org> | 2006-09-21 22:15:28 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-09-21 22:15:28 +0000 |
commit | 69ccd0aaf25ed914eb1cda22e33e8b97f04a177d (patch) | |
tree | 53ba6a42b165ceec7a2652aed95860224d306185 /setuptools/command/__init__.py | |
parent | 70c294c9d39d953dd1f64f52e753a82a5e206bbe (diff) | |
download | external_python_setuptools-69ccd0aaf25ed914eb1cda22e33e8b97f04a177d.tar.gz external_python_setuptools-69ccd0aaf25ed914eb1cda22e33e8b97f04a177d.tar.bz2 external_python_setuptools-69ccd0aaf25ed914eb1cda22e33e8b97f04a177d.zip |
Fix bdist_wininst files not being uploaded by "upload"
(backport from trunk)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4051964
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r-- | setuptools/command/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py index 0689b788..454b4a9f 100644 --- a/setuptools/command/__init__.py +++ b/setuptools/command/__init__.py @@ -2,13 +2,14 @@ __all__ = [ 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop', 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts', 'sdist', 'setopt', 'test', 'upload', 'install_egg_info', 'install_scripts', - 'register', + 'register', 'bdist_wininst', ] import sys if sys.version>='2.5': # In Python 2.5 and above, distutils includes its own upload command __all__.remove('upload') + __all__.remove('bdist_wininst') # this is only for 'upload' support from distutils.command.bdist import bdist |