diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-12 16:09:00 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-12 16:09:00 +0000 |
| commit | be8614c3e659341f234b1d64d017e1ddcafb00c6 (patch) | |
| tree | 6f4d5cdd1a3ba0930c4e13ba62df1492dcc7219c /setuptools/command/develop.py | |
| parent | c3fa11daf820859de4083c987f7e18d870364db3 (diff) | |
| download | python-setuptools-bitbucket-be8614c3e659341f234b1d64d017e1ddcafb00c6.tar.gz | |
Fix breakage of the "develop" command that was caused by the addition of
``--always-unzip`` to the ``easy_install`` command. Bump version for bug
fix release.
Diffstat (limited to 'setuptools/command/develop.py')
| -rwxr-xr-x | setuptools/command/develop.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index 9ade5aaf..a757b2e5 100755 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -24,6 +24,8 @@ class develop(easy_install): command_consumes_arguments = False # override base + negative_opt = {} + def run(self): if self.uninstall: self.multi_version = True @@ -37,8 +39,6 @@ class develop(easy_install): - - def finalize_options(self): ei = self.get_finalized_command("egg_info") self.args = [ei.egg_name] |
