From 46bd7d7d6c50dfb380aabc388a8a662cb19f462b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 8 Feb 2016 07:24:13 +0100 Subject: Fixed address of the activation link. --- src/web/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/notifications.py') 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) -- cgit