##// END OF EJS Templates
context: remove redundant handling of match.bad return value...
Mads Kiilerich -
r21114:a63958bc default
parent child Browse files
Show More
@@ -433,8 +433,7 b' class changectx(basectx):'
433 433 if fn in self._dirs:
434 434 # specified pattern is a directory
435 435 continue
436 if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
437 yield fn
436 match.bad(fn, _('no such file in rev %s') % self)
438 437
439 438 class basefilectx(object):
440 439 """A filecontext object represents the common logic for its children:
General Comments 0
You need to be logged in to leave comments. Login now