diff --git a/uffd/csrf/csrf.py b/uffd/csrf/csrf.py index f63df9337fb4f5e8e7aad7f5982ca1132de13bfb..6b61cf47dabc8be0893eb0f81c0d6d292c221d1d 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']