##// END OF EJS Templates
log: use correct phase info for parent field (issue4347)...
Sean Farley -
r22301:f6371cc6 stable
parent child Browse files
Show More
@@ -879,9 +879,10 b' class changeset_printer(object):'
879 879 self.ui.write(_("phase: %s\n") % _(ctx.phasestr()),
880 880 label='log.phase')
881 881 for parent in parents:
882 label = 'log.parent changeset.%s' % self.repo[parent[0]].phasestr()
882 883 # i18n: column positioning for "hg log"
883 884 self.ui.write(_("parent: %d:%s\n") % parent,
884 label='log.parent changeset.%s' % ctx.phasestr())
885 label=label)
885 886
886 887 if self.ui.debugflag:
887 888 mnode = ctx.manifestnode()
General Comments 0
You need to be logged in to leave comments. Login now