aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/decorators.py1
1 files changed, 0 insertions, 1 deletions
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)