aboutsummaryrefslogtreecommitdiff
path: root/api/util
diff options
context:
space:
mode:
Diffstat (limited to 'api/util')
-rw-r--r--api/util/authentication.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/api/util/authentication.py b/api/util/authentication.py
index 43b147a..021399a 100644
--- a/api/util/authentication.py
+++ b/api/util/authentication.py
@@ -45,7 +45,6 @@ def authenticate_user(db, username: str, password: str):
if not user:
return False
if not verify_password(password, user.hashed_password):
- print("WHY")
return False
return user