##// END OF EJS Templates
dirstate: use the right variable (f, not ff)
Benoit Boissinot -
r7023:74be9d0c default
parent child Browse files
Show More
@@ -422,7 +422,7 b' class dirstate(object):'
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'):
General Comments 0
You need to be logged in to leave comments. Login now