From 4bcd56c17d518d9c50465e12f1e254bc4d6bbcdb Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 5 Oct 2023 17:46:55 +0300 Subject: [PATCH] remove print-debugging --- files/routes/users.py | 1 - 1 file changed, 1 deletion(-) diff --git a/files/routes/users.py b/files/routes/users.py index d8027af45b..51af5d4d22 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -1337,7 +1337,6 @@ if KOFI_TOKEN: def kofi(): data = json.loads(request.values['data']) verification_token = data['verification_token'] - print(verification_token, flush=True) if verification_token not in {KOFI_TOKEN, KOFI_TOKEN2}: abort(400) print(request.headers.get('CF-Connecting-IP'), flush=True)