Skip to content

Commit c11e56f

Browse files
author
stef
committed
[fix] correct url in submitter response
1 parent 3590a1f commit c11e56f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bt/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def moderate(request):
8787
msg = {'from': '[email protected]',
8888
'to': [v.comment_set.get().submitter_email],
8989
'subject': _('NNMon submission approved').encode("Utf-8"),
90-
'body': _("Your report has been approved.\nTo see it, please visit: %s/view/%s") %
90+
'body': _("Your report has been approved.\nTo see it, please visit: %s/%s") %
9191
(settings.ROOT_URL or 'http://localhost:8001/', v.get_absolute_url())
9292
}
9393
send_mail(msg['subject'], msg['body'], msg['from'], msg['to'], fail_silently=False)

0 commit comments

Comments
 (0)