diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:05:33 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:05:33 -0400 |
| commit | 857949575022946cc60c7cd1d0d088246d3f7540 (patch) | |
| tree | 893f92b97aa19d7b196e928067ceeb56166d88bc /setuptools | |
| parent | 5ef93a05518c3cc6b48f45d1a7213fcb69df90b4 (diff) | |
| download | python-setuptools-git-857949575022946cc60c7cd1d0d088246d3f7540.tar.gz | |
Ensure that tmpdir is unicode. Fixes #704.
Diffstat (limited to 'setuptools')
| -rwxr-xr-x | setuptools/command/easy_install.py | 2 |
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() |
