diff mercurial/localrepo.py @ 13972:d1f4e7fd970a

move path_auditor from util to scmutil
author Adrian Buehlmann <adrian@cadifra.com>
date Wed, 20 Apr 2011 22:43:31 +0200
parents d13913355390
children 97ed99d1f419
line wrap: on
line diff
--- a/mercurial/localrepo.py	Wed Apr 20 21:41:41 2011 +0200
+++ b/mercurial/localrepo.py	Wed Apr 20 22:43:31 2011 +0200
@@ -31,7 +31,7 @@
         self.root = os.path.realpath(util.expandpath(path))
         self.path = os.path.join(self.root, ".hg")
         self.origroot = path
-        self.auditor = util.path_auditor(self.root, self._checknested)
+        self.auditor = scmutil.path_auditor(self.root, self._checknested)
         self.opener = scmutil.opener(self.path)
         self.wopener = scmutil.opener(self.root)
         self.baseui = baseui