summaryrefslogtreecommitdiff
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-30 11:05:33 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-07-30 11:05:33 -0400
commit857949575022946cc60c7cd1d0d088246d3f7540 (patch)
tree893f92b97aa19d7b196e928067ceeb56166d88bc /setuptools
parent5ef93a05518c3cc6b48f45d1a7213fcb69df90b4 (diff)
downloadpython-setuptools-git-857949575022946cc60c7cd1d0d088246d3f7540.tar.gz
Ensure that tmpdir is unicode. Fixes #704.
Diffstat (limited to 'setuptools')
-rwxr-xr-xsetuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index ae9079d8..4783ce48 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -627,7 +627,7 @@ class easy_install(Command):
)
def easy_install(self, spec, deps=False):
- tmpdir = tempfile.mkdtemp(prefix="easy_install-")
+ tmpdir = tempfile.mkdtemp(prefix=six.u("easy_install-"))
if not self.editable:
self.install_site_py()