mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-20 10:26:44 +01:00
Fixed quotes
This commit is contained in:
parent
6cb10873fb
commit
6293c135e0
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue