diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-27 09:29:53 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-27 09:29:53 -0400 |
commit | 5802fd80e413b63af8be9198f14da1ade47d409c (patch) | |
tree | 087a0a44af1bfa5eb7c72d31f2e62899b9efa48f /setuptools/command/install_lib.py | |
parent | 89bde0f0a7af8936e38dbedbd82e2af14f3efc39 (diff) | |
download | python-setuptools-git-5802fd80e413b63af8be9198f14da1ade47d409c.tar.gz |
Use rpartition here, essential to the algorithm. Fixes #259.
--HG--
extra : amend_source : d7b3c001b4db616a67793dcc57d5c13e3828ad3a
Diffstat (limited to 'setuptools/command/install_lib.py')
-rw-r--r-- | setuptools/command/install_lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install_lib.py b/setuptools/command/install_lib.py index 3cd16a8f..9b772227 100644 --- a/setuptools/command/install_lib.py +++ b/setuptools/command/install_lib.py @@ -43,7 +43,7 @@ class install_lib(orig.install_lib): """ while pkg_name: yield pkg_name - pkg_name, sep, child = pkg_name.partition('.') + pkg_name, sep, child = pkg_name.rpartition('.') def _get_SVEM_NSPs(self): """ |