diff options
Diffstat (limited to 'api/user/password.py')
-rw-r--r-- | api/user/password.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/user/password.py b/api/user/password.py index ff52ba4..b77067f 100644 --- a/api/user/password.py +++ b/api/user/password.py @@ -10,7 +10,7 @@ def index(): data = request.get_json() if not data["password"] or \ - not data["newPassword"]: + not data["newPassword"]: return "", 400 return {}, 200 |