diff options
Diffstat (limited to 'setuptools/command/egg_info.py')
-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 |