mercurial/dirstate.py
branchstable
changeset 15488 6eff984d8e76
parent 15399 41453d55b481
child 15550 b2fd4746414a
--- a/mercurial/dirstate.py	Tue Nov 15 17:16:17 2011 +0100
+++ b/mercurial/dirstate.py	Tue Nov 15 14:25:11 2011 -0600
@@ -376,7 +376,7 @@
             del self._map[f]
 
     def _normalize(self, path, isknown):
-        normed = os.path.normcase(path)
+        normed = util.normcase(path)
         folded = self._foldmap.get(normed, None)
         if folded is None:
             if isknown or not os.path.lexists(os.path.join(self._root, path)):