hgext/convert/common.py
changeset 48913 f254fc73d956
parent 48875 6000f5b25c9b
child 48934 06de08b36c82
--- a/hgext/convert/common.py	Thu Mar 03 17:39:20 2022 -0800
+++ b/hgext/convert/common.py	Thu Mar 03 18:28:30 2022 -0800
@@ -417,7 +417,7 @@
     def _cmdline(self, cmd, *args, **kwargs):
         kwargs = pycompat.byteskwargs(kwargs)
         cmdline = [self.command, cmd] + list(args)
-        for k, v in pycompat.iteritems(kwargs):
+        for k, v in kwargs.items():
             if len(k) == 1:
                 cmdline.append(b'-' + k)
             else: