Submitter | Boris Feld |
---|---|
Date | Sept. 27, 2018, 5:08 p.m. |
Message ID | <b425c3186b916eef5e31.1538068115@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/35140/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -1202,7 +1202,8 @@ def _finishhistedit(ui, repo, state, fm) mapping = {} for n in tmpnodes: - mapping[n] = () + if n in repo: + mapping[n] = () # remove entries about unknown nodes nodemap = repo.unfiltered().changelog.nodemap