# HG changeset patch # User TK Soh # Date 1177103862 18000 # Node ID 50a46ae14efbca53984e3d44407351e0e94a0623 # Parent 28cbe9e01f174a041aa9039fefcc1e6d401429b6 hbisect: fix a typo in error message diff --git a/hgext/hbisect.py b/hgext/hbisect.py --- a/hgext/hbisect.py +++ b/hgext/hbisect.py @@ -136,7 +136,7 @@ class bisect(object): return d if head in stop: - raise util.Abort(_("Unconsistent state, %s:%s is good and bad") + raise util.Abort(_("Inconsistent state, %s:%s is good and bad") % (cl.rev(head), hg.short(head))) n_child = num_children(head) for i in xrange(cl.rev(head)+1):