mercurial/exthelper.py
changeset 48913 f254fc73d956
parent 48875 6000f5b25c9b
child 48946 642e31cb55f0
--- a/mercurial/exthelper.py	Thu Mar 03 17:39:20 2022 -0800
+++ b/mercurial/exthelper.py	Thu Mar 03 18:28:30 2022 -0800
@@ -14,7 +14,6 @@
     commands,
     error,
     extensions,
-    pycompat,
     registrar,
 )
 
@@ -114,7 +113,7 @@
         self._extcommandwrappers.extend(other._extcommandwrappers)
         self._functionwrappers.extend(other._functionwrappers)
         self.cmdtable.update(other.cmdtable)
-        for section, items in pycompat.iteritems(other.configtable):
+        for section, items in other.configtable.items():
             if section in self.configtable:
                 self.configtable[section].update(items)
             else: