equal
deleted
inserted
replaced
29 def __init__(self, baseui, path=None, create=0): |
29 def __init__(self, baseui, path=None, create=0): |
30 repo.repository.__init__(self) |
30 repo.repository.__init__(self) |
31 self.root = os.path.realpath(util.expandpath(path)) |
31 self.root = os.path.realpath(util.expandpath(path)) |
32 self.path = os.path.join(self.root, ".hg") |
32 self.path = os.path.join(self.root, ".hg") |
33 self.origroot = path |
33 self.origroot = path |
34 self.auditor = util.path_auditor(self.root, self._checknested) |
34 self.auditor = scmutil.path_auditor(self.root, self._checknested) |
35 self.opener = scmutil.opener(self.path) |
35 self.opener = scmutil.opener(self.path) |
36 self.wopener = scmutil.opener(self.root) |
36 self.wopener = scmutil.opener(self.root) |
37 self.baseui = baseui |
37 self.baseui = baseui |
38 self.ui = baseui.copy() |
38 self.ui = baseui.copy() |
39 |
39 |