Submitter | phabricator |
---|---|
Date | Dec. 29, 2017, 12:50 a.m. |
Message ID | <differential-rev-PHID-DREV-n3u35wtrwn5iq2oyyu5p-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/26496/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/patch.py b/mercurial/patch.py --- a/mercurial/patch.py +++ b/mercurial/patch.py @@ -2443,7 +2443,7 @@ modified = sorted(modifiedset) added = sorted(addedset) removed = sorted(removedset) - for dst, src in copy.items(): + for dst, src in list(copy.items()): if src not in ctx1: # Files merged in during a merge and then copied/renamed are # reported as copies. We want to show them in the diff as additions.