mercurial/manifest.py
changeset 24635 21e1ece30f8c
parent 24600 ea24cf92557a
child 24636 36872036169b
--- a/mercurial/manifest.py	Mon Apr 06 13:59:36 2015 -0700
+++ b/mercurial/manifest.py	Mon Apr 06 14:36:08 2015 -0700
@@ -6,7 +6,7 @@
 # GNU General Public License version 2 or any later version.
 
 from i18n import _
-import mdiff, parsers, error, revlog, util, scmutil
+import mdiff, parsers, error, revlog, util
 import array, struct
 import os
 
@@ -217,7 +217,7 @@
 
     @propertycache
     def _dirs(self):
-        return scmutil.dirs(self)
+        return util.dirs(self)
 
     def dirs(self):
         return self._dirs
@@ -561,7 +561,7 @@
 
     @propertycache
     def _alldirs(self):
-        return scmutil.dirs(self)
+        return util.dirs(self)
 
     def dirs(self):
         return self._alldirs