D7200: histedit: restore hex nodeids to be 12 digits long
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Sat Nov 2 05:37:48 UTC 2019
Closed by commit rHGb27cf9f52194: histedit: restore hex nodeids to be 12 digits long (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7200?vs=17497&id=17498
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7200/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7200
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
@@ -1402,7 +1402,7 @@
maxy, maxx = win.getmaxyx()
length = maxx - 3
- line = b"changeset: %d:%s" % (ctx.rev(), ctx.hex())
+ line = b"changeset: %d:%s" % (ctx.rev(), ctx.hex()[:12])
win.addstr(1, 1, line[:length])
line = b"user: %s" % ctx.user()
@@ -1432,7 +1432,7 @@
conflicts = rule.conflicts
if len(conflicts) > 0:
- conflictstr = b','.join(map(lambda r: r.ctx.hex(), conflicts))
+ conflictstr = b','.join(map(lambda r: r.ctx.hex()[:12], conflicts))
conflictstr = b"changed files overlap with %s" % conflictstr
else:
conflictstr = b'no overlap'
To: martinvonz, durin42, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list