mercurial/dirstate.py
branchstable
changeset 15550 b2fd4746414a
parent 15488 6eff984d8e76
child 15668 8e020155e76c
--- a/mercurial/dirstate.py	Tue Nov 22 17:51:43 2011 +0100
+++ b/mercurial/dirstate.py	Tue Nov 22 17:26:31 2011 -0600
@@ -68,7 +68,7 @@
     def _foldmap(self):
         f = {}
         for name in self._map:
-            f[os.path.normcase(name)] = name
+            f[util.normcase(name)] = name
         return f
 
     @propertycache