##// END OF EJS Templates
dirstate.walk: maintain a list of dirs not found...
Siddharth Agarwal -
r19170:b184e504 default
parent child Browse files
Show More
@@ -607,6 +607,7 b' class dirstate(object):'
607 607 results['.hg'] = None
608 608
609 609 # step 1: find all explicit files
610 dirsnotfound = []
610 611 for ff in files:
611 612 if normalize:
612 613 nf = normalize(normpath(ff), False, True)
@@ -642,6 +643,7 b' class dirstate(object):'
642 643 if fn.startswith(prefix):
643 644 if matchedir:
644 645 matchedir(nf)
646 dirsnotfound.append(nf)
645 647 skipstep3 = False
646 648 break
647 649 else:
General Comments 0
You need to be logged in to leave comments. Login now