Show More
@@ -117,14 +117,14 b' class localrepository(object):' | |||
|
117 | 117 | return self.requirements[:] |
|
118 | 118 | |
|
119 | 119 | def __init__(self, baseui, path=None, create=False): |
|
120 |
self.w |
|
|
121 |
self.w |
|
|
120 | self.wvfs = scmutil.vfs(path, expand=True) | |
|
121 | self.wopener = self.wvfs | |
|
122 | 122 | self.root = self.wvfs.base |
|
123 | 123 | self.path = self.wvfs.join(".hg") |
|
124 | 124 | self.origroot = path |
|
125 | 125 | self.auditor = scmutil.pathauditor(self.root, self._checknested) |
|
126 |
self. |
|
|
127 |
self. |
|
|
126 | self.vfs = scmutil.vfs(self.path) | |
|
127 | self.opener = self.vfs | |
|
128 | 128 | self.baseui = baseui |
|
129 | 129 | self.ui = baseui.copy() |
|
130 | 130 | # A list of callback to shape the phase if no data were found. |
General Comments 0
You need to be logged in to leave comments.
Login now