From ebc0f34c12db1284f2b156bb00adc70306fa2081 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 19 Sep 2023 17:07:12 +0200 Subject: [PATCH] appstore: forgot to remove some debug print statement --- store/app.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/store/app.py b/store/app.py index dd99296b..9640100c 100644 --- a/store/app.py +++ b/store/app.py @@ -193,8 +193,6 @@ def add_to_wishlist(): ) csrf_token = request.form["csrf_token"] - print(csrf_token) - print(session.get("csrf_token")) if csrf_token != session.get("csrf_token"): errormsg = _("Invalid CSRF token, please refresh the form and try again")