##// END OF EJS Templates
manifest: fix _very_ subtle bug with exact matchers passed to walk()...
Augie Fackler -
r44741:48a1a974 default
parent child Browse files
Show More
@@ -530,6 +530,7 class manifestdict(object):
530 # avoid the entire walk if we're only looking for specific files
530 # avoid the entire walk if we're only looking for specific files
531 if self._filesfastpath(match):
531 if self._filesfastpath(match):
532 for fn in sorted(fset):
532 for fn in sorted(fset):
533 if fn in self:
533 yield fn
534 yield fn
534 return
535 return
535
536
General Comments 0
You need to be logged in to leave comments. Login now