From c5a3e7370a8677b2dc5cd4b1bf4292b00302f8e1 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 26 Mar 2019 16:37:26 +0000 Subject: remove debug statement --- app/decorators.py | 1 - 1 file changed, 1 deletion(-) (limited to 'app/decorators.py') diff --git a/app/decorators.py b/app/decorators.py index d5b8821..df797bd 100644 --- a/app/decorators.py +++ b/app/decorators.py @@ -33,7 +33,6 @@ def login_required(func): elif not current_user.is_authenticated: return current_app.login_manager.unauthorized() elif not current_user.is_confirmed: - flash("hello world") return redirect(url_for("auth.not_confirmed")) return func(*args, **kwargs) -- cgit v1.2.3