Remove debug print

This commit is contained in:
Matthias Portzel 2022-02-07 22:03:26 -05:00
parent 220c5e91e8
commit a01d586b55
1 changed files with 0 additions and 1 deletions

View File

@ -17,7 +17,6 @@ def check_authenticated(request):
authenticated = False
try:
if constant_time_compare(request.COOKIES["password"], settings.PASSWORD):
print("Authorization success")
authenticated = True
except KeyError:
pass