# HG changeset patch # User Benoit Boissinot # Date 2010-04-15 23:57:32 # Node ID c1d375e93ee8bcb6238bd3267b7e5d20a1b214e7 # Parent a101a743c570d62457bf3525bf7012bec29daa6f context: fix bug introduced in fb89cd21a7a0, path should be used diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -687,7 +687,7 @@ class workingctx(changectx): node, flag = self._repo.manifest.find(mnode, orig) ff = self._repo.dirstate.flagfunc(lambda x: flag or None) try: - return ff(orig) + return ff(path) except OSError: pass