From patchwork Sun Feb 18 14:17:31 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2320: py3: explicitly convert result of dict.items() into list From: phabricator X-Patchwork-Id: 28097 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Sun, 18 Feb 2018 14:17:31 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG3e1139b7d617: py3: explicitly convert result of dict.items() into list (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2320?vs=5849&id=5865 REVISION DETAIL https://phab.mercurial-scm.org/D2320 AFFECTED FILES hgext/mq.py CHANGE DETAILS To: pulkit, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -3196,7 +3196,7 @@ guards[g] += 1 if ui.verbose: guards['NONE'] = noguards - guards = guards.items() + guards = list(guards.items()) guards.sort(key=lambda x: x[0][1:]) if guards: ui.note(_('guards in series file:\n'))