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 | 63cf7a4d8cdef61908c71c8c238a44e19b6b54ba (patch) | |
tree | 1c386fa3c52d0b93db62636470bc8521f971a817 /setuptools/command/easy_install.py | |
parent | 0b726b23aa1717688d59e3996c6a3b6bda667b59 (diff) | |
download | python-setuptools-bitbucket-63cf7a4d8cdef61908c71c8c238a44e19b6b54ba.tar.gz |
Update release notes and comment to provide a bit more detail about the issue and to be more consistent with the solution.
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) |