changeset 6811:70ecce68df7c

dirstate: remove superfluous normalize() call in walk()
author Patrick Mezard <pmezard@gmail.com>
date Sun, 20 Jul 2008 19:25:08 +0200
parents 8f7a2915170a
children fdf5980bd010
files mercurial/dirstate.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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