Submitter | phabricator |
---|---|
Date | Nov. 9, 2019, 4 p.m. |
Message ID | <4d6c8ccc669cc68b57f187ec648347b5@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43093/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -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: