aboutsummaryrefslogtreecommitdiff
path: root/api/util/authentication.py
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-12-19 01:27:15 +0000
committerGitHub <noreply@github.com>2024-12-19 01:27:15 +0000
commit880280d67f8ef7593d7caad8e1bbc5dfa7c14bed (patch)
treefc931891daef93de651290f4cfe5536a3e40c528 /api/util/authentication.py
parent3b57e4a4487f0c40e8e2b8c4d613e5cd588f5027 (diff)
parent1ae686480c084f3af897de138fc2af97f0c262d2 (diff)
Merge pull request #4 from PacketParker/dev
Dev
Diffstat (limited to 'api/util/authentication.py')
-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