##// END OF EJS Templates
chistedit: improve proper username in histedit curses interface...
Akshit Jain -
r41850:df1f3ba5 default
parent child Browse files
Show More
@@ -1260,7 +1260,7 b' def _chisteditmain(repo, rules, stdscr):'
1260 line = "changeset: {0}:{1:<12}".format(ctx.rev(), ctx)
1260 line = "changeset: {0}:{1:<12}".format(ctx.rev(), ctx)
1261 win.addstr(1, 1, line[:length])
1261 win.addstr(1, 1, line[:length])
1262
1262
1263 line = "user: {0}".format(stringutil.shortuser(ctx.user()))
1263 line = "user: {0}".format(ctx.user())
1264 win.addstr(2, 1, line[:length])
1264 win.addstr(2, 1, line[:length])
1265
1265
1266 bms = repo.nodebookmarks(ctx.node())
1266 bms = repo.nodebookmarks(ctx.node())
General Comments 0
You need to be logged in to leave comments. Login now