diff -r 74802979dd9d -r 649d3ac37a12 hgext/remotefilelog/__init__.py --- 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'):