Skip to content
Snippets Groups Projects
Commit 8eaf2abe authored by Freddie Witherden's avatar Freddie Witherden
Browse files

Fix prefork for Python 2.6.

parent 6b35bd1f
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,12 @@ class DirectForker(object):
return retc
def waitall(self):
return {aid: self.wait(aid) for aid in list(self.apids)}
rets = {}
for aid in list(self.apids):
rets[aid] = self.wait(aid)
return rets
def _send_packet(sock, data):
......
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