##// END OF EJS Templates
summary: don't explicitly str() something we're about to %s...
Augie Fackler -
r31345:dd49a6c1 default
parent child Browse files
Show More
@@ -4812,7 +4812,7 b' def summary(ui, repo, **opts):'
4812 4812 # label with log.changeset (instead of log.parent) since this
4813 4813 # shows a working directory parent *changeset*:
4814 4814 # i18n: column positioning for "hg summary"
4815 ui.write(_('parent: %d:%s ') % (p.rev(), str(p)),
4815 ui.write(_('parent: %d:%s ') % (p.rev(), p),
4816 4816 label=cmdutil._changesetlabels(p))
4817 4817 ui.write(' '.join(p.tags()), label='log.tag')
4818 4818 if p.bookmarks():
General Comments 0
You need to be logged in to leave comments. Login now