dirstate: remove superfluous normalize() call in walk()
authorPatrick Mezard <pmezard@gmail.com>
Sun, 20 Jul 2008 19:25:08 +0200
changeset 6811 70ecce68df7c
parent 6810 8f7a2915170a
child 6812 fdf5980bd010
dirstate: remove superfluous normalize() call in walk()
mercurial/dirstate.py
--- a/mercurial/dirstate.py	Sun Jul 20 19:09:00 2008 +0200
+++ b/mercurial/dirstate.py	Sun Jul 20 19:25:08 2008 +0200
@@ -588,7 +588,7 @@
                 known[nn] = 1
                 if match(nf):
                     if supported(ff, st.st_mode, verbose=True):
-                        yield 'f', self.normalize(nf), st
+                        yield 'f', nn, st
                     elif ff in dc:
                         yield 'm', nf, st