From a01d586b5550237ec53437d7e54b52fb5ed4b61d Mon Sep 17 00:00:00 2001 From: Matthias Portzel Date: Mon, 7 Feb 2022 22:03:26 -0500 Subject: [PATCH] Remove debug print --- main/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main/views.py b/main/views.py index 484ae0c..f7c4cc2 100644 --- a/main/views.py +++ b/main/views.py @@ -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