aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 19:36:21 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 19:36:21 +0200
commit5ea9a45112c0dc53cfb1e881eed8a2c3c6b80e98 (patch)
treef39dcc726c8c0fdd68a6ece6a11cc9df0e045130 /pyaggr3g470r/views.py
parentbugfix (diff)
downloadnewspipe-5ea9a45112c0dc53cfb1e881eed8a2c3c6b80e98.tar.gz
newspipe-5ea9a45112c0dc53cfb1e881eed8a2c3c6b80e98.tar.bz2
newspipe-5ea9a45112c0dc53cfb1e881eed8a2c3c6b80e98.zip
Add reason of the problem..
Diffstat (limited to 'pyaggr3g470r/views.py')
-rw-r--r--pyaggr3g470r/views.py2
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'))
bgstack15