diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-03 10:42:11 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-03 10:42:11 -0400 |
commit | f86079e4b6629d75a4650be64bdcbe89724138a8 (patch) | |
tree | 3214af75c6d2cb04c2550c90accfdfd650ac14e1 /setuptools/command/easy_install.py | |
parent | 9eebb2dfe17fa129f2201add401c8fb6eb0ebcc1 (diff) | |
download | external_python_setuptools-f86079e4b6629d75a4650be64bdcbe89724138a8.tar.gz external_python_setuptools-f86079e4b6629d75a4650be64bdcbe89724138a8.tar.bz2 external_python_setuptools-f86079e4b6629d75a4650be64bdcbe89724138a8.zip |
Backed out improper fix for distribute issue #174
--HG--
branch : Setuptools-Distribute merge
extra : source : 28eb706c219004e2dd83dcd1db37d952e8c66908
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 4ca0526d..655478b3 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -655,8 +655,7 @@ Please make the appropriate changes for your system and try again. self.update_pth(dist) self.package_index.add(dist) self.local_index.add(dist) - if not self.editable: - self.install_egg_scripts(dist) + self.install_egg_scripts(dist) self.installed_projects[dist.key] = dist log.info(self.installation_report(requirement, dist, *info)) if (dist.has_metadata('dependency_links.txt') and |