##// END OF EJS Templates
cmdutil: avoid wrapping ctx.phasestr() by _()...
FUJIWARA Katsunori -
r24864:bff42a92 stable
parent child Browse files
Show More
@@ -1142,7 +1142,7 b' class changeset_printer(object):'
1142 label='log.%s' % ns.colorname)
1142 label='log.%s' % ns.colorname)
1143 if self.ui.debugflag:
1143 if self.ui.debugflag:
1144 # i18n: column positioning for "hg log"
1144 # i18n: column positioning for "hg log"
1145 self.ui.write(_("phase: %s\n") % _(ctx.phasestr()),
1145 self.ui.write(_("phase: %s\n") % ctx.phasestr(),
1146 label='log.phase')
1146 label='log.phase')
1147 for pctx in self._meaningful_parentrevs(ctx):
1147 for pctx in self._meaningful_parentrevs(ctx):
1148 label = 'log.parent changeset.%s' % pctx.phasestr()
1148 label = 'log.parent changeset.%s' % pctx.phasestr()
General Comments 0
You need to be logged in to leave comments. Login now