Submitter | phabricator |
---|---|
Date | Nov. 8, 2019, 4:29 p.m. |
Message ID | <differential-rev-PHID-DREV-h43liby6hcqn47awsxvo-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/42957/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -2565,8 +2565,8 @@ repo = repo.unfiltered() # Find all nodes that need to be stripped # (we use %lr instead of %ln to silently ignore unknown items) - nm = repo.changelog.nodemap - nodes = sorted(n for n in nodes if n in nm) + has_node = repo.changelog.index.has_node + nodes = sorted(n for n in nodes if has_node(n)) roots = [c.node() for c in repo.set(b"roots(%ln)", nodes)] if roots: backup = not nobackup