Skip to content
Snippets Groups Projects
Commit dea766fca7e1 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

keepalive: remove pycompat.iteritems()

Differential Revision: https://phab.mercurial-scm.org/D12329
parent 428177ad70b0
No related branches found
No related tags found
1 merge request!168branching: merge default into stable
......@@ -193,7 +193,7 @@
def close_all(self):
"""close all open connections"""
for host, conns in pycompat.iteritems(self._cm.get_all()):
for host, conns in self._cm.get_all().items():
for h in conns:
self._cm.remove(h)
h.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment