equal
deleted
inserted
replaced
420 results are yielded in a tuple (filename, stat), where stat |
420 results are yielded in a tuple (filename, stat), where stat |
421 and st is the stat result if the file was found in the directory. |
421 and st is the stat result if the file was found in the directory. |
422 ''' |
422 ''' |
423 |
423 |
424 def fwarn(f, msg): |
424 def fwarn(f, msg): |
425 self._ui.warn('%s: %s\n' % (self.pathto(ff), msg)) |
425 self._ui.warn('%s: %s\n' % (self.pathto(f), msg)) |
426 return False |
426 return False |
427 badfn = fwarn |
427 badfn = fwarn |
428 if hasattr(match, 'bad'): |
428 if hasattr(match, 'bad'): |
429 badfn = match.bad |
429 badfn = match.bad |
430 |
430 |