This commit is contained in:
Lex Berezhny 2019-04-27 14:27:18 -04:00
parent d26caded53
commit 266f94bc95

View file

@ -445,6 +445,6 @@ class LBRYDB(DB):
super().close()
self.sql.close()
async def _open_dbs(self, *args):
await super()._open_dbs(*args)
async def _open_dbs(self, *args, **kwargs):
await super()._open_dbs(*args, **kwargs)
self.sql.open()