mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-01 07:57:26 +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)
|
self.cur.execute("""SELECT count(name)
|
||||||
FROM sqlite_master
|
FROM sqlite_master
|
||||||
WHERE type='table'
|
WHERE type='table'
|
||||||
AND name="{}""".format(self.table_name))
|
AND name='{}'""".format(self.table_name))
|
||||||
return self.cur.fetchone()[0]
|
return self.cur.fetchone()[0]
|
||||||
|
|
||||||
def create_sbo_table(self):
|
def create_sbo_table(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue