1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Added the rethink connection to run on

This commit is contained in:
phxntxm 2017-03-08 00:22:32 -06:00
parent 365501bef2
commit bb08575b98

View file

@ -198,7 +198,7 @@ async def get_content(table, key=None):
if key:
cursor = await r.table(table).get(key).run(conn)
else:
cursor = await r.table(table).run()
cursor = await r.table(table).run(conn)
if cursor is None:
content = None
else: