diff -r c4dd1e7c1dab -r 259e5dc21c1d hgext/histedit.py --- 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 '