diff options
author | Thirumal Venkat <me@thirumal.in> | 2018-10-24 01:05:52 +0530 |
---|---|---|
committer | Benoit Pierre <benoit.pierre@gmail.com> | 2018-10-23 21:35:52 +0200 |
commit | 8c22c3b5ac0a5a293b03b79686e53f885d71cba4 (patch) | |
tree | 49e8d855f842a4263d734c31a4dd9cf248f503bf /setuptools/command | |
parent | 5b90a0d9d97f52fc91792a8143670ee1a73f51c5 (diff) | |
download | external_python_setuptools-8c22c3b5ac0a5a293b03b79686e53f885d71cba4.tar.gz external_python_setuptools-8c22c3b5ac0a5a293b03b79686e53f885d71cba4.tar.bz2 external_python_setuptools-8c22c3b5ac0a5a293b03b79686e53f885d71cba4.zip |
Drop use of six.u (#1517)
Diffstat (limited to 'setuptools/command')
-rw-r--r-- | 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 3da601b7..c670a16e 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -632,7 +632,7 @@ class easy_install(Command): @contextlib.contextmanager def _tmpdir(self): - tmpdir = tempfile.mkdtemp(prefix=six.u("easy_install-")) + tmpdir = tempfile.mkdtemp(prefix=u"easy_install-") try: # cast to str as workaround for #709 and #710 and #712 yield str(tmpdir) |