bugfix
This commit is contained in:
parent
91e93d778d
commit
67571f1af8
@ -452,7 +452,8 @@ class SQLor(object):
|
|||||||
async def tables(self):
|
async def tables(self):
|
||||||
sqlstring = self.tablesSQL()
|
sqlstring = self.tablesSQL()
|
||||||
ret = []
|
ret = []
|
||||||
ret = await self._get_data(sqlstring,{})
|
async with r in self._get_data(sqlstring,{}):
|
||||||
|
ret.append(r)
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
def indexesSQL(self,tablename):
|
def indexesSQL(self,tablename):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user