From 6957cdedb081ef790a42e2b2b078711421f9ef08 Mon Sep 17 00:00:00 2001 From: nd <git@notandy.de> Date: Wed, 15 Jul 2020 00:55:30 +0200 Subject: [PATCH] remove print --- uffd/csrf/csrf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/uffd/csrf/csrf.py b/uffd/csrf/csrf.py index f63df933..6b61cf47 100644 --- a/uffd/csrf/csrf.py +++ b/uffd/csrf/csrf.py @@ -32,7 +32,6 @@ def csrf_protect(blueprint=None, endpoint=None): @bp.app_url_defaults def csrf_inject(endpoint, values): - print(endpoint, csrfEndpoints, endpoint not in csrfEndpoints) if endpoint not in csrfEndpoints or not session.get('_csrf_token'): return values['_csrf_token'] = session['_csrf_token'] -- GitLab