--- a/hgext/histedit.py Sat Nov 09 13:23:54 2019 +0100
+++ b/hgext/histedit.py Sat Nov 09 13:23:54 2019 +0100
@@ -2517,9 +2517,9 @@
del final[n]
# we expect all changes involved in final to exist in the repo
# turn `final` into list (topologically sorted)
- nm = state.repo.changelog.nodemap
+ get_rev = state.repo.changelog.index.get_rev
for prec, succs in final.items():
- final[prec] = sorted(succs, key=nm.get)
+ final[prec] = sorted(succs, key=get_rev)
# computed topmost element (necessary for bookmark)
if new: