Submitter | phabricator |
---|---|
Date | Feb. 13, 2018, 11:13 p.m. |
Message ID | <differential-rev-PHID-DREV-hs2qtz2eix5napqmonvg-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/27854/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/narrow/narrowmerge.py b/hgext/narrow/narrowmerge.py --- a/hgext/narrow/narrowmerge.py +++ b/hgext/narrow/narrowmerge.py @@ -28,7 +28,9 @@ nooptypes = set(['k']) # TODO: handle with nonconflicttypes nonconflicttypes = set('a am c cm f g r e'.split()) narrowmatch = repo.narrowmatch() - for f, action in actions.items(): + # We mutate the items in the dict during iteration, so iterate + # over a copy. + for f, action in list(actions.items()): if narrowmatch(f): pass elif not branchmerge: