# HG changeset patch # User Patrick Mezard # Date 2008-07-20 17:25:08 # Node ID 70ecce68df7c9adad2e768abd5c54a493fc5d591 # Parent 8f7a2915170a6a34c094cc9898264b8ee5170c14 dirstate: remove superfluous normalize() call in walk() diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -588,7 +588,7 @@ class dirstate(object): 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