test
This commit is contained in:
parent
975707e771
commit
b6602a70e7
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -172,7 +172,7 @@ def change():
|
|||
change = int(request.args.get("change"))
|
||||
except:
|
||||
return '<p>Error: 095</p><a href="/list">tags and user list</a>'
|
||||
c.execute(f"SELECT * FROM users WHERE id={user_id}")
|
||||
c.execute(f"SELECT * FROM users WHERE id=?", [user_id])
|
||||
users = c.fetchall()
|
||||
if users != []:
|
||||
balance_old = users[0][2]
|
||||
|
@ -299,7 +299,7 @@ def get_id():
|
|||
global finished
|
||||
global message
|
||||
tag_id = request.args.get("id")
|
||||
c.execute(f"SELECT * FROM tags WHERE tagid =?", [tag_id])
|
||||
c.execute(f"SELECT * FROM tags WHERE tagid=?", [tag_id])
|
||||
|
||||
tag_list = c.fetchall()
|
||||
if users.qsize() > 0:
|
||||
|
|
Loading…
Reference in a new issue