aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 22:11:41 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 22:11:41 +0200
commit4e59c5fb98cf4b348e9e23a6729e5b4742942e4c (patch)
treeea59dd1e592a1cd1ac9e07ce74c0467b8c34f32d /pyaggr3g470r/views.py
parentRemoved ADMIN_PLATFORM_EMAIL env variable. (diff)
downloadnewspipe-4e59c5fb98cf4b348e9e23a6729e5b4742942e4c.tar.gz
newspipe-4e59c5fb98cf4b348e9e23a6729e5b4742942e4c.tar.bz2
newspipe-4e59c5fb98cf4b348e9e23a6729e5b4742942e4c.zip
Updated translations.
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 bbc19b46..32ae1e30 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -189,7 +189,7 @@ def signup():
try:
emails.new_account_notification(user)
except Exception as e:
- flash(gettext('Problem while sending activation email: '+ str(e)), 'danger')
+ flash(gettext('Problem while sending activation email') + ': ' + str(e), 'danger')
return redirect(url_for('home'))
flash(gettext('Your account has been created. Check your mail to confirm it.'), 'success')
bgstack15