test
This commit is contained in:
parent
2050cc5a5c
commit
b47dbc0880
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -59,7 +59,7 @@ def list():
|
|||
@app.route("/list/user", methods=['GET'])
|
||||
def user_info():
|
||||
username = request.args.get("user")
|
||||
c.execute("SELECT * FROM users WHERE username = ?", [username])
|
||||
c.execute("SELECT * FROM users WHERE username = '?'", [username])
|
||||
user_list = c.fetchall()
|
||||
if user_list != []:
|
||||
user = user_list[0]
|
||||
|
|
Loading…
Reference in a new issue