##// END OF EJS Templates
changeset_printer: use changectx to get status tuple...
Yuya Nishihara -
r24485:914caae9 default
parent child Browse files
Show More
@@ -1107,7 +1107,6 b' class changeset_printer(object):'
1107 label='log.node')
1107 label='log.node')
1108 return
1108 return
1109
1109
1110 log = self.repo.changelog
1111 date = util.datestr(ctx.date())
1110 date = util.datestr(ctx.date())
1112
1111
1113 if self.ui.debugflag:
1112 if self.ui.debugflag:
@@ -1163,7 +1162,7 b' class changeset_printer(object):'
1163 label='log.date')
1162 label='log.date')
1164
1163
1165 if self.ui.debugflag:
1164 if self.ui.debugflag:
1166 files = self.repo.status(log.parents(changenode)[0], changenode)[:3]
1165 files = ctx.p1().status(ctx)[:3]
1167 for key, value in zip([# i18n: column positioning for "hg log"
1166 for key, value in zip([# i18n: column positioning for "hg log"
1168 _("files:"),
1167 _("files:"),
1169 # i18n: column positioning for "hg log"
1168 # i18n: column positioning for "hg log"
General Comments 0
You need to be logged in to leave comments. Login now