Mercurial > public > mercurial-scm > hg-stable
diff 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 |
line wrap: on
line diff
--- a/hgext/histedit.py Mon Dec 14 22:37:31 2015 +0000 +++ b/hgext/histedit.py Mon Dec 14 23:04:17 2015 +0000 @@ -602,7 +602,7 @@ def run(self): repo = self.repo rulectx = repo[self.node] - hg.update(repo, self.state.parentctxnode) + hg.update(repo, self.state.parentctxnode, quietempty=True) applychanges(repo.ui, repo, rulectx, {}) raise error.InterventionRequired( _('Make changes as needed, you may commit or record as needed '