comparison hgext/histedit.py @ 27407:bf4d5d8dc2aa

histedit: omit useless message from update (edit) specifically: 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
author timeless <timeless@mozdev.org>
date Mon, 14 Dec 2015 23:04:17 +0000
parents 11be6b7f95da
children 6602a7b9deec
comparison
equal deleted inserted replaced
27406:11be6b7f95da 27407:bf4d5d8dc2aa
600 @addhisteditaction(['edit', 'e']) 600 @addhisteditaction(['edit', 'e'])
601 class edit(histeditaction): 601 class edit(histeditaction):
602 def run(self): 602 def run(self):
603 repo = self.repo 603 repo = self.repo
604 rulectx = repo[self.node] 604 rulectx = repo[self.node]
605 hg.update(repo, self.state.parentctxnode) 605 hg.update(repo, self.state.parentctxnode, quietempty=True)
606 applychanges(repo.ui, repo, rulectx, {}) 606 applychanges(repo.ui, repo, rulectx, {})
607 raise error.InterventionRequired( 607 raise error.InterventionRequired(
608 _('Make changes as needed, you may commit or record as needed ' 608 _('Make changes as needed, you may commit or record as needed '
609 'now.\nWhen you are finished, run hg histedit --continue to ' 609 'now.\nWhen you are finished, run hg histedit --continue to '
610 'resume.')) 610 'resume.'))