# HG changeset patch # User Akshit Jain # Date 2019-02-14 15:27:26 # Node ID df1f3ba5615784f32ae93591ee59594aa110f51c # Parent 1f44bfab0fff18500d80bf6747d3e2ce5bceb9d4 chistedit: improve proper username in histedit curses interface in changeset section (issue6072) Differential Revision: https://phab.mercurial-scm.org/D5967 diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -1260,7 +1260,7 @@ def _chisteditmain(repo, rules, stdscr): line = "changeset: {0}:{1:<12}".format(ctx.rev(), ctx) win.addstr(1, 1, line[:length]) - line = "user: {0}".format(stringutil.shortuser(ctx.user())) + line = "user: {0}".format(ctx.user()) win.addstr(2, 1, line[:length]) bms = repo.nodebookmarks(ctx.node())