This commit is contained in:
Stephan Porada 2020-03-16 11:21:58 +01:00
parent 52e5092d13
commit e0e2fe017c

View File

@ -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'))