diff hgext/histedit.py @ 27405:5837ca674da9

histedit: omit useless message from update (histeditaction) specifically: 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
author timeless <timeless@mozdev.org>
date Mon, 14 Dec 2015 21:43:16 +0000
parents 50b6a04f817f
children 11be6b7f95da
line wrap: on
line diff
--- a/hgext/histedit.py	Mon Dec 14 23:14:06 2015 +0000
+++ b/hgext/histedit.py	Mon Dec 14 21:43:16 2015 +0000
@@ -409,7 +409,7 @@
         parentctx, but does not commit them."""
         repo = self.repo
         rulectx = repo[self.node]
-        hg.update(repo, self.state.parentctxnode)
+        hg.update(repo, self.state.parentctxnode, quietempty=True)
         stats = applychanges(repo.ui, repo, rulectx, {})
         if stats and stats[3] > 0:
             raise error.InterventionRequired(_('Fix up the change and run '