Show More
@@ -10,7 +10,6 b'' | |||||
10 | from __future__ import absolute_import |
|
10 | from __future__ import absolute_import | |
11 |
|
11 | |||
12 | import errno |
|
12 | import errno | |
13 | import os |
|
|||
14 |
|
13 | |||
15 | from .i18n import _ |
|
14 | from .i18n import _ | |
16 | from . import ( |
|
15 | from . import ( | |
@@ -20,6 +19,7 b' from . import (' | |||||
20 | localrepo, |
|
19 | localrepo, | |
21 | manifest, |
|
20 | manifest, | |
22 | namespaces, |
|
21 | namespaces, | |
|
22 | pathutil, | |||
23 | scmutil, |
|
23 | scmutil, | |
24 | store, |
|
24 | store, | |
25 | url, |
|
25 | url, | |
@@ -99,7 +99,7 b' def build_opener(ui, authinfo):' | |||||
99 |
|
99 | |||
100 | def join(self, path): |
|
100 | def join(self, path): | |
101 | if path: |
|
101 | if path: | |
102 |
return |
|
102 | return pathutil.join(self.base, path) | |
103 | else: |
|
103 | else: | |
104 | return self.base |
|
104 | return self.base | |
105 |
|
105 |
General Comments 0
You need to be logged in to leave comments.
Login now