diff -r b39958d6b81b -r aac4be30e250 mercurial/wireprotov1server.py --- a/mercurial/wireprotov1server.py Thu May 03 18:39:58 2018 +0900 +++ b/mercurial/wireprotov1server.py Sat May 26 12:14:04 2018 +0900 @@ -8,7 +8,6 @@ from __future__ import absolute_import import os -import tempfile from .i18n import _ from .node import ( @@ -568,7 +567,7 @@ fp.close() if tempname: os.unlink(tempname) - fd, tempname = tempfile.mkstemp(prefix='hg-unbundle-') + fd, tempname = pycompat.mkstemp(prefix='hg-unbundle-') repo.ui.debug('redirecting incoming bundle to %s\n' % tempname) fp = os.fdopen(fd, pycompat.sysstr('wb+'))