# HG changeset patch # User Denis Laxalde # Date 1483709674 -3600 # Node ID 8d46eaaa589c8c37bb5ce7174f850ec4b27bbf91 # Parent 6d0b1a69f98c39cd690c77b86179977f29ef2584 summary: use the same labels as log command in "parent: " line Re-use the cmdutil._changesetlabels function introduced in 5289fd78017a to have consistent labels between the "changeset: " line in log command and the "parent: " line in summary. diff -r 6d0b1a69f98c -r 8d46eaaa589c mercurial/commands.py --- a/mercurial/commands.py Fri Jan 06 13:50:52 2017 +0100 +++ b/mercurial/commands.py Fri Jan 06 14:34:34 2017 +0100 @@ -5982,7 +5982,7 @@ # shows a working directory parent *changeset*: # i18n: column positioning for "hg summary" ui.write(_('parent: %d:%s ') % (p.rev(), str(p)), - label='log.changeset changeset.%s' % p.phasestr()) + label=cmdutil._changesetlabels(p)) ui.write(' '.join(p.tags()), label='log.tag') if p.bookmarks(): marks.extend(p.bookmarks())