# HG changeset patch # User Augie Fackler # Date 2017-03-12 01:58:26 # Node ID dd49a6c166f7030680954b6b5e33622e644e0802 # Parent c99371e38e5ebb429b3b63e0b42b83d0999a6355 summary: don't explicitly str() something we're about to %s str() is wrong on Python 3 here, and %s implicitly calls str() anyway, so this was just extra dancing for no reason. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -4812,7 +4812,7 @@ def summary(ui, repo, **opts): # label with log.changeset (instead of log.parent) since this # shows a working directory parent *changeset*: # i18n: column positioning for "hg summary" - ui.write(_('parent: %d:%s ') % (p.rev(), str(p)), + ui.write(_('parent: %d:%s ') % (p.rev(), p), label=cmdutil._changesetlabels(p)) ui.write(' '.join(p.tags()), label='log.tag') if p.bookmarks():