##// END OF EJS Templates
manifest.walk: use return instead of StopIteration in generator...
Martin von Zweigbergk -
r24682:aef3d146 default
parent child Browse files
Show More
@@ -228,7 +228,7 b' class manifestdict(object):'
228 228 if fset and not match.anypats() and util.all(fn in self for fn in fset):
229 229 for fn in sorted(fset):
230 230 yield fn
231 raise StopIteration
231 return
232 232
233 233 for fn in self:
234 234 if fn in fset:
General Comments 0
You need to be logged in to leave comments. Login now