Allow empty subscription table
This commit is contained in:
parent
ea9379be7f
commit
69be9c7c07
1 changed files with 6 additions and 3 deletions
|
@ -137,9 +137,12 @@ def get_subscriptions(basepath: str = BASEPATH,
|
||||||
con = sqlite3.connect(fullpath)
|
con = sqlite3.connect(fullpath)
|
||||||
cur = con.cursor()
|
cur = con.cursor()
|
||||||
select_query = '''SELECT * FROM {}'''.format(SUB_TABLE)
|
select_query = '''SELECT * FROM {}'''.format(SUB_TABLE)
|
||||||
cur.execute(select_query)
|
try:
|
||||||
for result in cur.fetchall():
|
cur.execute(select_query)
|
||||||
subscriptions.append(result)
|
for result in cur.fetchall():
|
||||||
|
subscriptions.append(result)
|
||||||
|
except sqlite3.OperationalError:
|
||||||
|
pass
|
||||||
return subscriptions
|
return subscriptions
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue