Submitter | phabricator |
---|---|
Date | March 3, 2022, 9:23 p.m. |
Message ID | <differential-rev-PHID-DREV-cg34jrxtdsrcz5pleftk-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50673/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/mercurial/merge.py b/mercurial/merge.py --- a/mercurial/merge.py +++ b/mercurial/merge.py @@ -625,9 +625,7 @@ args, msg = self._actionmapping[a][f] yield f, args, msg else: - for f, (args, msg) in pycompat.iteritems( - self._actionmapping[a] - ): + for f, (args, msg) in self._actionmapping[a].items(): yield f, args, msg def len(self, actions=None):