Fix INSERT statement
This commit is contained in:
parent
cb3f9654da
commit
aa399adebd
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class dbObject:
|
||||||
self.commit()
|
self.commit()
|
||||||
|
|
||||||
def storeUser(self, cid, ato, ase):
|
def storeUser(self, cid, ato, ase):
|
||||||
self.executeQuery("INSERT INTO tokens VALUES(%i, '%s', '%s');" % (int(cid), ato, ase))
|
self.executeQuery("INSERT INTO tokens(cid, ato, ase) VALUES(%i, '%s', '%s');" % (int(cid), ato, ase))
|
||||||
self.commit()
|
self.commit()
|
||||||
|
|
||||||
def ato(self, cid):
|
def ato(self, cid):
|
||||||
|
|
Loading…
Reference in a new issue