aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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