dirstate: use the right variable (f, not ff)
authorBenoit Boissinot <benoit.boissinot@ens-lyon.org>
Wed, 10 Sep 2008 22:54:28 +0200
changeset 7023 74be9d0c665c
parent 7022 bdc8d00c4ffa
child 7027 ab57069232b4
dirstate: use the right variable (f, not ff)
mercurial/dirstate.py
--- a/mercurial/dirstate.py	Wed Sep 10 22:37:07 2008 +0200
+++ b/mercurial/dirstate.py	Wed Sep 10 22:54:28 2008 +0200
@@ -422,7 +422,7 @@
         '''
 
         def fwarn(f, msg):
-            self._ui.warn('%s: %s\n' % (self.pathto(ff), msg))
+            self._ui.warn('%s: %s\n' % (self.pathto(f), msg))
             return False
         badfn = fwarn
         if hasattr(match, 'bad'):