From 8c22c3b5ac0a5a293b03b79686e53f885d71cba4 Mon Sep 17 00:00:00 2001 From: Thirumal Venkat Date: Wed, 24 Oct 2018 01:05:52 +0530 Subject: Drop use of six.u (#1517) --- setuptools/command/easy_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command/easy_install.py') 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) -- cgit v1.2.3