##// END OF EJS Templates
context.walk: call with util.all() a generator, not a list...
Martin von Zweigbergk -
r24380:dd3bccb4 default
parent child Browse files
Show More
@@ -594,7 +594,7 b' class changectx(basectx):'
594
594
595 # avoid the entire walk if we're only looking for specific files
595 # avoid the entire walk if we're only looking for specific files
596 if fset and not match.anypats():
596 if fset and not match.anypats():
597 if util.all([fn in self for fn in fset]):
597 if util.all(fn in self for fn in fset):
598 for fn in sorted(fset):
598 for fn in sorted(fset):
599 if match(fn):
599 if match(fn):
600 yield fn
600 yield fn
General Comments 0
You need to be logged in to leave comments. Login now