changeset 48925:1414b65303d5

localrepo: remove pycompat.iteritems() Differential Revision: https://phab.mercurial-scm.org/D12330
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 21 Feb 2022 11:10:47 -0700
parents dea766fca7e1
children 3d35e7483602
files mercurial/localrepo.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/localrepo.py	Mon Feb 21 11:10:27 2022 -0700
+++ b/mercurial/localrepo.py	Mon Feb 21 11:10:47 2022 -0700
@@ -2127,7 +2127,7 @@
         '''return a list of tags ordered by revision'''
         if not self._tagscache.tagslist:
             l = []
-            for t, n in pycompat.iteritems(self.tags()):
+            for t, n in self.tags().items():
                 l.append((self.changelog.rev(n), t, n))
             self._tagscache.tagslist = [(t, n) for r, t, n in sorted(l)]