Commit d7907a5c authored by Jason R. Coombs's avatar Jason R. Coombs

Fix #272 - TypeError when namespace_package is unicode

--HG--
branch : distribute
extra : rebase_source : 5bb6bc394dbe2834977b853af85241ae0a472de6
parent d881174c
......@@ -13,6 +13,9 @@ CHANGES
on Python 3.
* Issue #269: AttributeError when an exception occurs reading Manifest.in
on late releases of Python.
* Issue #272: Prevent TypeError when namespace package names are unicode
and single-install-externally-managed is used. Also fixes PIP issue
449.
------
0.6.24
......
......@@ -89,6 +89,8 @@ class install_egg_info(Command):
if not self.dry_run:
f = open(filename,'wt')
for pkg in nsp:
# ensure pkg is not a unicode string under Python 2.7
pkg = str(pkg)
pth = tuple(pkg.split('.'))
trailer = '\n'
if '.' in pkg:
......
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