# HG changeset patch # User Sean Farley # Date 1408831388 18000 # Node ID f6371cc62d2ac9f719df3c0fd8631f2271c8c0b5 # Parent 05ea941aafdcfd9b4db23654dde9789664a42e3e log: use correct phase info for parent field (issue4347) Previously, there was a copy / paste error with using the current changeset's phase information. We now look up the parent context explicitly. The line was too long so it is stored into a variable first. diff -r 05ea941aafdc -r f6371cc62d2a mercurial/cmdutil.py --- a/mercurial/cmdutil.py Mon Aug 25 15:10:09 2014 +0200 +++ b/mercurial/cmdutil.py Sat Aug 23 17:03:08 2014 -0500 @@ -879,9 +879,10 @@ self.ui.write(_("phase: %s\n") % _(ctx.phasestr()), label='log.phase') for parent in parents: + label = 'log.parent changeset.%s' % self.repo[parent[0]].phasestr() # i18n: column positioning for "hg log" self.ui.write(_("parent: %d:%s\n") % parent, - label='log.parent changeset.%s' % ctx.phasestr()) + label=label) if self.ui.debugflag: mnode = ctx.manifestnode()