summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-08-02 09:20:32 -0400
committerGitHub <noreply@github.com>2016-08-02 09:20:32 -0400
commit7ba9874f0d7083b42da9b1f3d8a5c8ef059d90be (patch)
tree01ff441fae84a289bed0f1dc3e69e2ca75438105
parent27e455c506748ad119813f2f8a23d1cc13726100 (diff)
parentb822e86d4b41cd54c12e6d5fdf3f7d00e89bb4d4 (diff)
downloadpython-setuptools-git-7ba9874f0d7083b42da9b1f3d8a5c8ef059d90be.tar.gz
Merge pull request #714 from sileht/sileht/cython-fix2
Revert "Ensure that tmpdir is unicode. Fixes #704."
-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 4783ce48..ae9079d8 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=six.u("easy_install-"))
+ tmpdir = tempfile.mkdtemp(prefix="easy_install-")
if not self.editable:
self.install_site_py()