Commit 8c22c3b5 authored by Thirumal Venkat's avatar Thirumal Venkat Committed by Benoit Pierre

Drop use of six.u (#1517)

parent 5b90a0d9
Dropped use of six.u in favor of `u""` literals.
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment