##// END OF EJS Templates
Pass normalized directory names to the ignore function...
Alexis S. L. Carvalho -
r4254:a7cae4e2 default
parent child Browse files
Show More
@@ -423,7 +423,7 b' class dirstate(object):'
423 # don't trip over symlinks
423 # don't trip over symlinks
424 st = os.lstat(p)
424 st = os.lstat(p)
425 if stat.S_ISDIR(st.st_mode):
425 if stat.S_ISDIR(st.st_mode):
426 if not ignore(p):
426 if not ignore(np):
427 work.append(p)
427 work.append(p)
428 if imatch(np) and np in dc:
428 if imatch(np) and np in dc:
429 yield 'm', np, st
429 yield 'm', np, st
General Comments 0
You need to be logged in to leave comments. Login now