diff options
-rw-r--r-- | pyaggr3g470r/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py index f2185858..58feb72b 100644 --- a/pyaggr3g470r/views.py +++ b/pyaggr3g470r/views.py @@ -189,7 +189,7 @@ def signup(): result = emails.new_account_notification(user) if result.status_code != 200: - flash(gettext('Problem while sending activation email.'), 'danger') + flash(gettext('Problem while sending activation email: '+ str(result.text)), 'danger') else: flash(gettext('Your account has been created. Check your mail to confirm it.'), 'success') return redirect(url_for('home')) |