##// END OF EJS Templates
walk: we always have a badfn
Matt Mackall -
r8676:acd69fc2 default
parent child Browse files
Show More
@@ -425,9 +425,6 b' class dirstate(object):'
425 425 def fwarn(f, msg):
426 426 self._ui.warn('%s: %s\n' % (self.pathto(f), msg))
427 427 return False
428 badfn = fwarn
429 if hasattr(match, 'bad'):
430 badfn = match.bad
431 428
432 429 def badtype(f, mode):
433 430 kind = _('unknown')
@@ -450,6 +447,7 b' class dirstate(object):'
450 447 dirignore = util.always
451 448
452 449 matchfn = match.matchfn
450 badfn = match.bad
453 451 dmap = self._map
454 452 normpath = util.normpath
455 453 normalize = self.normalize
General Comments 0
You need to be logged in to leave comments. Login now