# HG changeset patch # User Benoit Boissinot # Date 2008-09-10 20:54:28 # Node ID 74be9d0c665c439f68d03fdbea9303cf54611d37 # Parent bdc8d00c4ffa41fd4eb6352046efb67f863f364a dirstate: use the right variable (f, not ff) diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -422,7 +422,7 @@ class dirstate(object): ''' 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'):