##// END OF EJS Templates
cmdutil: use ctx.rev() instead of %d % ctx...
Gregory Szorc -
r36424:fd2191d8 default
parent child Browse files
Show More
@@ -2575,7 +2575,7 def commitstatus(repo, node, branch, bhe
2575 if not opts.get('close_branch'):
2575 if not opts.get('close_branch'):
2576 for r in parents:
2576 for r in parents:
2577 if r.closesbranch() and r.branch() == branch:
2577 if r.closesbranch() and r.branch() == branch:
2578 repo.ui.status(_('reopening closed branch head %d\n') % r)
2578 repo.ui.status(_('reopening closed branch head %d\n') % r.rev())
2579
2579
2580 if repo.ui.debugflag:
2580 if repo.ui.debugflag:
2581 repo.ui.write(_('committed changeset %d:%s\n') % (ctx.rev(), ctx.hex()))
2581 repo.ui.write(_('committed changeset %d:%s\n') % (ctx.rev(), ctx.hex()))
General Comments 0
You need to be logged in to leave comments. Login now