##// END OF EJS Templates
dirstate._walkexplicit: drop normpath calls...
Siddharth Agarwal -
r24522:18085e46 default
parent child Browse files
Show More
@@ -599,7 +599,6 b' class dirstate(object):'
599 599 matchedir = match.explicitdir
600 600 badfn = match.bad
601 601 dmap = self._map
602 normpath = util.normpath
603 602 lstat = os.lstat
604 603 getkind = stat.S_IFMT
605 604 dirkind = stat.S_IFDIR
@@ -636,9 +635,9 b' class dirstate(object):'
636 635 alldirs = None
637 636 for ff in files:
638 637 if normalize:
639 nf = normalize(normpath(ff), False, True)
638 nf = normalize(ff, False, True)
640 639 else:
641 nf = normpath(ff)
640 nf = ff
642 641 if nf in results:
643 642 continue
644 643
General Comments 0
You need to be logged in to leave comments. Login now