diff options
Diffstat (limited to 'api/user/status.py')
-rw-r--r-- | api/user/status.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/user/status.py b/api/user/status.py index e762d12..219481a 100644 --- a/api/user/status.py +++ b/api/user/status.py @@ -14,8 +14,8 @@ def index(user_id): if not status: return "", 400 cursor.execute( - "update users set status = ? where user_id = ?", - [status[0:200], user_id] + "update users set status = ? where user_id = ?", + [status[0:200], user_id] ) connection.commit() |