hgext/histedit.py
changeset 36208 28830ba50687
parent 36206 be73fa5b42d3
child 36213 59affe7e01d4
equal deleted inserted replaced
36207:0ea86f70da8e 36208:28830ba50687
   489         hg.update(repo, self.state.parentctxnode, quietempty=True)
   489         hg.update(repo, self.state.parentctxnode, quietempty=True)
   490         stats = applychanges(repo.ui, repo, rulectx, {})
   490         stats = applychanges(repo.ui, repo, rulectx, {})
   491         repo.dirstate.setbranch(rulectx.branch())
   491         repo.dirstate.setbranch(rulectx.branch())
   492         if stats and stats[3] > 0:
   492         if stats and stats[3] > 0:
   493             buf = repo.ui.popbuffer()
   493             buf = repo.ui.popbuffer()
   494             repo.ui.write(*buf)
   494             repo.ui.write(buf)
   495             raise error.InterventionRequired(
   495             raise error.InterventionRequired(
   496                 _('Fix up the change (%s %s)') %
   496                 _('Fix up the change (%s %s)') %
   497                 (self.verb, node.short(self.node)),
   497                 (self.verb, node.short(self.node)),
   498                 hint=_('hg histedit --continue to resume'))
   498                 hint=_('hg histedit --continue to resume'))
   499         else:
   499         else: