diff options
author | PJ Eby <distutils-sig@python.org> | 2006-07-11 19:51:23 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-07-11 19:51:23 +0000 |
commit | d9cf1dca48e1ad0e14c06a89ab92ffd3dc9e9df8 (patch) | |
tree | 0f3c7ba4f831c4dd53d9f9adcf4bed9b0d13320b | |
parent | ce302c2fd64918212760c27304b520f48833d1ae (diff) | |
download | external_python_setuptools-d9cf1dca48e1ad0e14c06a89ab92ffd3dc9e9df8.tar.gz external_python_setuptools-d9cf1dca48e1ad0e14c06a89ab92ffd3dc9e9df8.tar.bz2 external_python_setuptools-d9cf1dca48e1ad0e14c06a89ab92ffd3dc9e9df8.zip |
Fix doubled --tag-build help display (backport from trunk)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4050593
-rwxr-xr-x | setuptools/command/egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 39b05866..f8e78e96 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -28,7 +28,6 @@ class egg_info(Command): ('no-svn-revision', 'R', "Don't add subversion revision ID [default]"), ('no-date', 'D', "Don't include date stamp [default]"), - ('tag-build=', 'b', "Specify explicit tag to add to version number"), ] boolean_options = ['tag-date', 'tag-svn-revision'] @@ -39,6 +38,7 @@ class egg_info(Command): + def initialize_options (self): self.egg_name = None self.egg_version = None |