mercurial/httpconnection.py
changeset 48913 f254fc73d956
parent 48875 6000f5b25c9b
child 48946 642e31cb55f0
--- a/mercurial/httpconnection.py	Thu Mar 03 17:39:20 2022 -0800
+++ b/mercurial/httpconnection.py	Thu Mar 03 18:28:30 2022 -0800
@@ -93,7 +93,7 @@
     bestuser = None
     bestlen = 0
     bestauth = None
-    for group, auth in pycompat.iteritems(groups):
+    for group, auth in groups.items():
         if user and user != auth.get(b'username', user):
             # If a username was set in the URI, the entry username
             # must either match it or be unset