aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-08 07:24:13 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-08 07:24:13 +0100
commit46bd7d7d6c50dfb380aabc388a8a662cb19f462b (patch)
treebd8ad7738c15f1a0d0a2d86b4cb374a53bf91ccd /src
parentUpdated Vagrant default configuration file. (diff)
downloadnewspipe-46bd7d7d6c50dfb380aabc388a8a662cb19f462b.tar.gz
newspipe-46bd7d7d6c50dfb380aabc388a8a662cb19f462b.tar.bz2
newspipe-46bd7d7d6c50dfb380aabc388a8a662cb19f462b.zip
Fixed address of the activation link.
Diffstat (limited to 'src')
-rw-r--r--src/web/notifications.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/notifications.py b/src/web/notifications.py
index 25251a0c..64c9ff43 100644
--- a/src/web/notifications.py
+++ b/src/web/notifications.py
@@ -42,7 +42,7 @@ def new_account_notification(user):
Account creation notification.
"""
plaintext = """Hello,\n\nYour account has been created. Click on the following link to confirm it:\n%s\n\nSee you,""" % \
- (conf.PLATFORM_URL + 'confirm_account/' + user.activation_key)
+ (conf.PLATFORM_URL + 'user/confirm_account/' + user.activation_key)
emails.send(to=user.email, bcc=conf.NOTIFICATION_EMAIL,
subject="[jarr] Account creation", plaintext=plaintext)
bgstack15