# HG changeset patch # User Mads Kiilerich # Date 1308867486 -7200 # Node ID a97ebfec8c2919385ce9dd247b02e9473ad13784 # Parent 88a53081fb2167536c19db10bc5d5e15d6b589a0 revset: fix parameter name in implementation of follow() diff -r 88a53081fb21 -r a97ebfec8c29 mercurial/revset.py --- a/mercurial/revset.py Mon Jun 20 22:15:52 2011 -0500 +++ b/mercurial/revset.py Fri Jun 24 00:18:06 2011 +0200 @@ -425,7 +425,7 @@ s |= set([p]) return [r for r in subset if r in s] -def followfile(repo, subset, f): +def followfile(repo, subset, x): """``follow()`` An alias for ``::.`` (ancestors of the working copy's first parent). """