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)
|
||||
cur = con.cursor()
|
||||
select_query = '''SELECT * FROM {}'''.format(SUB_TABLE)
|
||||
cur.execute(select_query)
|
||||
for result in cur.fetchall():
|
||||
subscriptions.append(result)
|
||||
try:
|
||||
cur.execute(select_query)
|
||||
for result in cur.fetchall():
|
||||
subscriptions.append(result)
|
||||
except sqlite3.OperationalError:
|
||||
pass
|
||||
return subscriptions
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue