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