diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-04-05 17:10:55 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-04-05 17:10:55 -0400 |
commit | 463e07e68ee64bb15aea8516239908e3f6d4f40f (patch) | |
tree | 5c29c41a71f80d5de3c3d6af9ffaa6c475ccc0b3 /setuptools/command/easy_install.py | |
parent | 86a22eb827e436ff4648552d4b6922c2c08b573a (diff) | |
download | external_python_setuptools-463e07e68ee64bb15aea8516239908e3f6d4f40f.tar.gz external_python_setuptools-463e07e68ee64bb15aea8516239908e3f6d4f40f.tar.bz2 external_python_setuptools-463e07e68ee64bb15aea8516239908e3f6d4f40f.zip |
Update release notes and comment to provide a bit more detail about the issue and to be more consistent with the solution.0.6.36
--HG--
branch : distribute
extra : rebase_source : c813a29e831f266d427d4a4bce3da97f475a8eee
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index ba98fa13..98af2620 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -523,8 +523,9 @@ Please make the appropriate changes for your system and try again. if not self.exclude_scripts and dist.metadata_isdir('scripts'): for script_name in dist.metadata_listdir('scripts'): if dist.metadata_isdir('scripts/' + script_name): - # Probably Python 3 __pycache__ directory. - continue + # The "script" is a directory, likely a Python 3 + # __pycache__ directory, so skip it. + continue self.install_script( dist, script_name, dist.get_metadata('scripts/'+script_name) |