diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-30 12:12:01 +0100 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-30 12:12:01 +0100 |
commit | ee51f57c4616357bb032e61a726a34cda0e71a66 (patch) | |
tree | cc48ab4bec7ec3191b85ff2d843910f9732b8bee | |
parent | ab81837b707280b960ca02675a85da7918d17fec (diff) | |
download | external_python_setuptools-ee51f57c4616357bb032e61a726a34cda0e71a66.tar.gz external_python_setuptools-ee51f57c4616357bb032e61a726a34cda0e71a66.tar.bz2 external_python_setuptools-ee51f57c4616357bb032e61a726a34cda0e71a66.zip |
The no_egg option is no longer present.
-rwxr-xr-x | setuptools/command/bdist_rpm.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/setuptools/command/bdist_rpm.py b/setuptools/command/bdist_rpm.py index 194fa266..a2258401 100755 --- a/setuptools/command/bdist_rpm.py +++ b/setuptools/command/bdist_rpm.py @@ -6,10 +6,6 @@ from distutils.command.bdist_rpm import bdist_rpm as _bdist_rpm class bdist_rpm(_bdist_rpm): - def initialize_options(self): - _bdist_rpm.initialize_options(self) - self.no_egg = None - def run(self): # ensure distro name is up-to-date self.run_command('egg_info') |