# HG changeset patch # User "Yann E. MORIN" # Date 1319063854 -7200 # Node ID 1f677c7e494df609c8d5be5b22f62dde0fb24ff4 # Parent e4a17bb8472fe5903abf794fbf3e1a6e5734f783 bisect: remove superfluous parameter in label() The argument is not used. This is a left-over of non-published iterations, and it passed through. Signed-off-by: "Yann E. MORIN" diff -r e4a17bb8472f -r 1f677c7e494d mercurial/hbisect.py --- a/mercurial/hbisect.py Wed Nov 02 15:06:40 2011 -0500 +++ b/mercurial/hbisect.py Thu Oct 20 00:37:34 2011 +0200 @@ -220,7 +220,7 @@ else: raise error.ParseError(_('invalid bisect state')) -def label(repo, node, short=False): +def label(repo, node): rev = repo.changelog.rev(node) # Try explicit sets