D5967: chistedit: improve proper username in histedit curses interfacein changeset section (issue6072)

2019-02-14 Thread akshjain.jain74 (Akshit Jain)
akshjain.jain74 added a comment.


  okay , thanks @martinvonz

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D5967

To: akshjain.jain74, durin42, #hg-reviewers, martinvonz
Cc: martinvonz, mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D5967: chistedit: improve proper username in histedit curses interfacein changeset section (issue6072)

2019-02-14 Thread akshjain.jain74 (Akshit Jain)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGdf1f3ba56157: chistedit: improve proper username in 
histedit curses interface (authored by akshjain.jain74, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5967?vs=14097&id=14098

REVISION DETAIL
  https://phab.mercurial-scm.org/D5967

AFFECTED FILES
  hgext/histedit.py

CHANGE DETAILS

diff --git a/hgext/histedit.py b/hgext/histedit.py
--- a/hgext/histedit.py
+++ b/hgext/histedit.py
@@ -1260,7 +1260,7 @@
 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())



To: akshjain.jain74, durin42, #hg-reviewers, martinvonz
Cc: martinvonz, mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D5967: chistedit: improve proper username in histedit curses interfacein changeset section (issue6072)

2019-02-14 Thread martinvonz (Martin von Zweigbergk)
martinvonz accepted this revision.
martinvonz added a comment.
This revision is now accepted and ready to land.


  Looks like there's plenty of space there to show the full username. I suspect 
it was the way it was because it came from FB where just the username is enough 
to identify people.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D5967

To: akshjain.jain74, durin42, #hg-reviewers, martinvonz
Cc: martinvonz, mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel