##// END OF EJS Templates
histedit: fix silly bug that was unpacking a bytestr before writing it...
Augie Fackler -
r36188:28830ba5 default
parent child Browse files
Show More
@@ -491,7 +491,7 b' class histeditaction(object):'
491 491 repo.dirstate.setbranch(rulectx.branch())
492 492 if stats and stats[3] > 0:
493 493 buf = repo.ui.popbuffer()
494 repo.ui.write(*buf)
494 repo.ui.write(buf)
495 495 raise error.InterventionRequired(
496 496 _('Fix up the change (%s %s)') %
497 497 (self.verb, node.short(self.node)),
General Comments 0
You need to be logged in to leave comments. Login now