branch | stable |
changeset 34943 | 3423f7e2d287 |
parent 33604 | 8b00c723cee1 |
child 35248 | c752fbe228fb |
--- a/mercurial/statichttprepo.py Tue Oct 24 11:15:30 2017 -0700 +++ b/mercurial/statichttprepo.py Sat Oct 28 17:23:52 2017 +0900 @@ -10,7 +10,6 @@ from __future__ import absolute_import import errno -import os from .i18n import _ from . import ( @@ -20,6 +19,7 @@ localrepo, manifest, namespaces, + pathutil, scmutil, store, url, @@ -99,7 +99,7 @@ def join(self, path): if path: - return os.path.join(self.base, path) + return pathutil.join(self.base, path) else: return self.base