##// END OF EJS Templates
dirstate: remove superfluous normalize() call in walk()
Patrick Mezard -
r6811:70ecce68 default
parent child Browse files
Show More
@@ -588,7 +588,7 b' class dirstate(object):'
588 known[nn] = 1
588 known[nn] = 1
589 if match(nf):
589 if match(nf):
590 if supported(ff, st.st_mode, verbose=True):
590 if supported(ff, st.st_mode, verbose=True):
591 yield 'f', self.normalize(nf), st
591 yield 'f', nn, st
592 elif ff in dc:
592 elif ff in dc:
593 yield 'm', nf, st
593 yield 'm', nf, st
594
594
General Comments 0
You need to be logged in to leave comments. Login now