hgext/remotefilelog/__init__.py
changeset 43105 649d3ac37a12
parent 43085 eef9a2d67051
child 43117 8ff1ecfadcd1
--- a/hgext/remotefilelog/__init__.py	Sun Oct 06 17:59:15 2019 -0400
+++ b/hgext/remotefilelog/__init__.py	Sun Oct 06 19:25:18 2019 -0400
@@ -502,7 +502,7 @@
     if isenabled(repo):
         files = []
         sparsematch = repo.maybesparsematch(mctx.rev())
-        for f, (m, actionargs, msg) in actions.iteritems():
+        for f, (m, actionargs, msg) in pycompat.iteritems(actions):
             if sparsematch and not sparsematch(f):
                 continue
             if m in (b'c', b'dc', b'cm'):