Commit 5802fd80 authored by Jason R. Coombs's avatar Jason R. Coombs

Use rpartition here, essential to the algorithm. Fixes #259.

--HG--
extra : amend_source : d7b3c001b4db616a67793dcc57d5c13e3828ad3a
parent 89bde0f0
......@@ -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):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment