diff options
author | David Cournapeau <david@silveregg.co.jp> | 2010-05-20 19:31:44 +0900 |
---|---|---|
committer | David Cournapeau <david@silveregg.co.jp> | 2010-05-20 19:31:44 +0900 |
commit | 72c44b3258e02b56ac106f878a64eca726a6f01f (patch) | |
tree | 5747a06993c22ee0cb5639978242718f8307bf97 /setuptools/command/easy_install.py | |
parent | 0c8f3ad99a9b8d4a11e32ecf841df428a1cc7fa2 (diff) | |
download | external_python_setuptools-72c44b3258e02b56ac106f878a64eca726a6f01f.tar.gz external_python_setuptools-72c44b3258e02b56ac106f878a64eca726a6f01f.tar.bz2 external_python_setuptools-72c44b3258e02b56ac106f878a64eca726a6f01f.zip |
BUG: Fix #142 - easy_install ignore locally installed packages.
Backport from setuptools 0.6c10.
--HG--
branch : distribute
extra : rebase_source : d06cbdae906a725410d4993d9e1a631e2acac345
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index d68943fa..e13f676a 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -565,7 +565,8 @@ Please make the appropriate changes for your system and try again. self.check_editable(spec) dist = self.package_index.fetch_distribution( - spec, tmpdir, self.upgrade, self.editable, not self.always_copy + spec, tmpdir, self.upgrade, self.editable, not self.always_copy, + self.local_index ) if dist is None: |