Submitter | phabricator |
---|---|
Date | Feb. 1, 2018, 8:33 p.m. |
Message ID | <ac15abab0e73762a0da3e38e26629a04@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/27123/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/tags.py b/mercurial/tags.py --- a/mercurial/tags.py +++ b/mercurial/tags.py @@ -244,7 +244,7 @@ # remove tags pointing to invalid nodes cl = repo.changelog - for t in filetags.keys(): + for t in list(filetags): try: cl.rev(filetags[t][0]) except (LookupError, ValueError):