Commit 7ba9874f authored by Jason R. Coombs's avatar Jason R. Coombs Committed by GitHub

Merge pull request #714 from sileht/sileht/cython-fix2

Revert "Ensure that tmpdir is unicode. Fixes #704."
parents 27e455c5 b822e86d
......@@ -627,7 +627,7 @@ class easy_install(Command):
)
def easy_install(self, spec, deps=False):
tmpdir = tempfile.mkdtemp(prefix=six.u("easy_install-"))
tmpdir = tempfile.mkdtemp(prefix="easy_install-")
if not self.editable:
self.install_site_py()
......
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