##// 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 if fset and not match.anypats() and util.all(fn in self for fn in fset):
228 if fset and not match.anypats() and util.all(fn in self for fn in fset):
229 for fn in sorted(fset):
229 for fn in sorted(fset):
230 yield fn
230 yield fn
231 raise StopIteration
231 return
232
232
233 for fn in self:
233 for fn in self:
234 if fn in fset:
234 if fn in fset:
General Comments 0
You need to be logged in to leave comments. Login now