Submitter | phabricator |
---|---|
Date | Feb. 25, 2018, 1:54 a.m. |
Message ID | <04e63edced2df7d3c2a234e1e4aa8f20@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28352/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -860,7 +860,8 @@ transition = "bad" state[transition].append(node) ctx = repo[node] - ui.status(_('changeset %d:%s: %s\n') % (ctx, ctx, transition)) + ui.status(_('changeset %d:%s: %s\n') % (ctx.rev(), ctx, + transition)) hbisect.checkstate(state) # bisect nodes, changesets, bgood = hbisect.bisect(repo, state)