diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-26 16:37:26 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-26 16:37:26 +0000 |
| commit | c5a3e7370a8677b2dc5cd4b1bf4292b00302f8e1 (patch) | |
| tree | efb87c66d5d6370322c340e376d42627665ef577 /app | |
| parent | Add user table (diff) | |
| download | AnnotateChange-c5a3e7370a8677b2dc5cd4b1bf4292b00302f8e1.tar.gz AnnotateChange-c5a3e7370a8677b2dc5cd4b1bf4292b00302f8e1.zip | |
remove debug statement
Diffstat (limited to 'app')
| -rw-r--r-- | app/decorators.py | 1 |
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) |
