diff mercurial/dirstate.py @ 4254:a7cae4e22749

Pass normalized directory names to the ignore function This fixes a bad performance regression caused by dd0d9bd91e0a.
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Tue, 20 Mar 2007 22:09:53 -0300
parents dd0d9bd91e0a
children fe0fe0b4d73b
line wrap: on
line diff
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -423,7 +423,7 @@ class dirstate(object):
                     # don't trip over symlinks
                     st = os.lstat(p)
                     if stat.S_ISDIR(st.st_mode):
-                        if not ignore(p):
+                        if not ignore(np):
                             work.append(p)
                         if imatch(np) and np in dc:
                             yield 'm', np, st