author | Gregory Szorc <gregory.szorc@gmail.com> |
Mon, 21 Feb 2022 11:11:59 -0700 | |
changeset 48927 | c17aee610bab |
parent 48926 | 3d35e7483602 |
child 48928 | ceafb0f81250 |
--- a/mercurial/merge.py Mon Feb 21 11:11:27 2022 -0700 +++ b/mercurial/merge.py Mon Feb 21 11:11:59 2022 -0700 @@ -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):