##// END OF EJS Templates
keepalive: remove pycompat.iteritems()...
Gregory Szorc -
r49779:dea766fc default
parent child Browse files
Show More
@@ -193,7 +193,7 b' class KeepAliveHandler(object):'
193
193
194 def close_all(self):
194 def close_all(self):
195 """close all open connections"""
195 """close all open connections"""
196 for host, conns in pycompat.iteritems(self._cm.get_all()):
196 for host, conns in self._cm.get_all().items():
197 for h in conns:
197 for h in conns:
198 self._cm.remove(h)
198 self._cm.remove(h)
199 h.close()
199 h.close()
General Comments 0
You need to be logged in to leave comments. Login now