Fixed quotes

This commit is contained in:
Dimitris Zlatanidis 2022-05-29 00:35:39 +03:00
parent 6cb10873fb
commit 6293c135e0

View file

@ -43,7 +43,7 @@ class Database:
self.cur.execute("""SELECT count(name)
FROM sqlite_master
WHERE type='table'
AND name="{}""".format(self.table_name))
AND name='{}'""".format(self.table_name))
return self.cur.fetchone()[0]
def create_sbo_table(self):