changeset 24655:18085e46caa9

dirstate._walkexplicit: drop normpath calls The paths the matcher returns are normalized already.
author Siddharth Agarwal <sid0@fb.com>
date Sun, 29 Mar 2015 23:28:30 -0700 (2015-03-30)
parents 489026bffbf6
children a4b81dbe73c1
files mercurial/dirstate.py
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -599,7 +599,6 @@
         matchedir = match.explicitdir
         badfn = match.bad
         dmap = self._map
-        normpath = util.normpath
         lstat = os.lstat
         getkind = stat.S_IFMT
         dirkind = stat.S_IFDIR
@@ -636,9 +635,9 @@
         alldirs = None
         for ff in files:
             if normalize:
-                nf = normalize(normpath(ff), False, True)
+                nf = normalize(ff, False, True)
             else:
-                nf = normpath(ff)
+                nf = ff
             if nf in results:
                 continue