mercurial/localrepo.py
changeset 27233 dfb836a31b61
parent 27167 3fe8cb40c9c5
child 27277 07ae7e8c8ac9
equal deleted inserted replaced
27232:79a86a95f325 27233:dfb836a31b61
   212         self.wopener = self.wvfs
   212         self.wopener = self.wvfs
   213         self.root = self.wvfs.base
   213         self.root = self.wvfs.base
   214         self.path = self.wvfs.join(".hg")
   214         self.path = self.wvfs.join(".hg")
   215         self.origroot = path
   215         self.origroot = path
   216         self.auditor = pathutil.pathauditor(self.root, self._checknested)
   216         self.auditor = pathutil.pathauditor(self.root, self._checknested)
       
   217         self.nofsauditor = pathutil.pathauditor(self.root, self._checknested,
       
   218                                                 realfs=False)
   217         self.vfs = scmutil.vfs(self.path)
   219         self.vfs = scmutil.vfs(self.path)
   218         self.opener = self.vfs
   220         self.opener = self.vfs
   219         self.baseui = baseui
   221         self.baseui = baseui
   220         self.ui = baseui.copy()
   222         self.ui = baseui.copy()
   221         self.ui.copy = baseui.copy # prevent copying repo configuration
   223         self.ui.copy = baseui.copy # prevent copying repo configuration