mercurial/localrepo.py
changeset 18945 e75b72fffdfe
parent 18811 0377352eb7d3
child 18946 3d4f41eaae67
equal deleted inserted replaced
18944:a9c443b3b240 18945:e75b72fffdfe
   151 
   151 
   152     def _baserequirements(self, create):
   152     def _baserequirements(self, create):
   153         return self.requirements[:]
   153         return self.requirements[:]
   154 
   154 
   155     def __init__(self, baseui, path=None, create=False):
   155     def __init__(self, baseui, path=None, create=False):
   156         self.wvfs = scmutil.vfs(path, expand=True)
   156         self.wvfs = scmutil.vfs(path, expandpath=True, realpath=True)
   157         self.wopener = self.wvfs
   157         self.wopener = self.wvfs
   158         self.root = self.wvfs.base
   158         self.root = self.wvfs.base
   159         self.path = self.wvfs.join(".hg")
   159         self.path = self.wvfs.join(".hg")
   160         self.origroot = path
   160         self.origroot = path
   161         self.auditor = scmutil.pathauditor(self.root, self._checknested)
   161         self.auditor = scmutil.pathauditor(self.root, self._checknested)