Commit edb198a0 authored by Jim Fulton's avatar Jim Fulton

fix asyncio.async call

parent 9b421915
......@@ -223,7 +223,7 @@ class Acceptor(object):
else:
cr = loop.create_unix_server(self.factory, addr, ssl=ssl)
f = asyncio.async(cr)
f = asyncio.async(cr, loop=loop)
@f.add_done_callback
def listenting(f):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment