diff hgext/histedit.py @ 27403:50b6a04f817f

histedit: omit useless message from abort specifically: 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
author timeless <timeless@mozdev.org>
date Mon, 14 Dec 2015 22:08:14 +0000
parents 43c00ca887d1
children 5837ca674da9
line wrap: on
line diff
--- a/hgext/histedit.py	Mon Dec 14 23:13:25 2015 +0000
+++ b/hgext/histedit.py	Mon Dec 14 22:08:14 2015 +0000
@@ -997,7 +997,7 @@
             # check whether we should update away
             if repo.unfiltered().revs('parents() and (%n  or %ln::)',
                                     state.parentctxnode, leafs | tmpnodes):
-                hg.clean(repo, state.topmost)
+                hg.clean(repo, state.topmost, show_stats=True, quietempty=True)
             cleanupnode(ui, repo, 'created', tmpnodes)
             cleanupnode(ui, repo, 'temp', leafs)
         except Exception: