##// END OF EJS Templates
Only walk over files that match our criteria.
Bryan O'Sullivan -
r730:d2dc7663 default
parent child Browse files
Show More
@@ -478,7 +478,7 b' class dirstate:'
478 else:
478 else:
479 if match(fn): unknown.append(fn)
479 if match(fn): unknown.append(fn)
480
480
481 return (lookup, changed, added, dc.keys(), unknown)
481 return (lookup, changed, added, filter(match, dc.keys()), unknown)
482
482
483 # used to avoid circular references so destructors work
483 # used to avoid circular references so destructors work
484 def opener(base):
484 def opener(base):
General Comments 0
You need to be logged in to leave comments. Login now