hgext/histedit.py
changeset 31638 259e5dc21c1d
parent 31637 c4dd1e7c1dab
child 32057 e5ffc91a2276
--- a/hgext/histedit.py	Sun Mar 26 15:34:39 2017 +0200
+++ b/hgext/histedit.py	Sun Mar 26 15:46:09 2017 +0200
@@ -1209,8 +1209,8 @@
         if repo.unfiltered().revs('parents() and (%n  or %ln::)',
                                 state.parentctxnode, leafs | tmpnodes):
             hg.clean(repo, state.topmost, show_stats=True, quietempty=True)
-        safecleanupnode(ui, repo, 'created', tmpnodes)
-        safecleanupnode(ui, repo, 'temp', leafs)
+        cleanupnode(ui, repo, 'created', tmpnodes)
+        cleanupnode(ui, repo, 'temp', leafs)
     except Exception:
         if state.inprogress():
             ui.warn(_('warning: encountered an exception during histedit '