From e0e2fe017cb9a4a1b96adeaaf15201b18a99d98c Mon Sep 17 00:00:00 2001 From: Stephan Porada <sporada@uni-bielefeld.de> Date: Mon, 16 Mar 2020 11:21:58 +0100 Subject: [PATCH] Fix typo --- app/auth/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/auth/views.py b/app/auth/views.py index eb591443..e95370ad 100644 --- a/app/auth/views.py +++ b/app/auth/views.py @@ -107,7 +107,7 @@ def resend_confirmation(): token = current_user.generate_confirmation_token() send_email(current_user.email, 'Confirm Your Account', 'auth/email/confirm', token=token, user=current_user) - flash('A new confirmation email has benn sent to you by email.') + flash('A new confirmation email has been sent to you by email.') return redirect(url_for('auth.unconfirmed')) -- GitLab