diff options
author | Melvyn Sopacua <melvyn@magemana.nl> | 2014-07-05 18:41:12 +0200 |
---|---|---|
committer | Melvyn Sopacua <melvyn@magemana.nl> | 2014-07-05 18:41:12 +0200 |
commit | 843ffb56d0c9ec652ee9a2a180a6742caf8f68fb (patch) | |
tree | 5a8374a6fe7d10aa1aa0d9a5aeacfacd72cdefa5 /setuptools/command/install_lib.py | |
parent | e66c4d9c3aefaf98a7d8d9b19ce5948fe7840c49 (diff) | |
download | python-setuptools-git-843ffb56d0c9ec652ee9a2a180a6742caf8f68fb.tar.gz |
Commit the fix we did when testing python3
I shall `hg status` before submitting PRs.
I shall `hg status` before submitting PRs.
I shall `hg status` before submitting PRs.
Diffstat (limited to 'setuptools/command/install_lib.py')
-rw-r--r-- | setuptools/command/install_lib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/install_lib.py b/setuptools/command/install_lib.py index cf5375f6..7692e0f3 100644 --- a/setuptools/command/install_lib.py +++ b/setuptools/command/install_lib.py @@ -18,7 +18,7 @@ class install_lib(orig.install_lib): .single_version_externally_managed) exclude_names = ['__init__.py', '__init__.pyc', '__init__.pyo'] if hasattr(imp, 'get_tag') : - exclude_names.extend( + exclude_names.extend(( os.path.join( '__pycache__', '__init__.' + imp.get_tag() + '.pyc' @@ -27,7 +27,7 @@ class install_lib(orig.install_lib): '__pycache__', '__init__.' + imp.get_tag() + '.pyo' ), - ) + )) if svem: for pkg in nsp: parts = pkg.split('.') |