Skip to content

Commit

Permalink
Make unittests work for older python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
grant-aterlo committed Aug 16, 2016
1 parent ffae551 commit 35b736a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiomcache/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def acquire(self):
conn = yield from self._create_new_conn()

# Give up control
yield from asyncio.sleep(0)
yield from asyncio.sleep(0, loop=self._loop)

self._in_use.add(conn)
return conn
Expand Down

0 comments on commit 35b736a

Please sign in to comment.