summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2021-10-30 09:46:11 -0400
committerlxf <sng@luxagraf.net>2021-10-30 09:46:11 -0400
commitd4f3f8d4fe2dc37d1b8c539bf48b09e73520195d (patch)
treeda3470880ce16e51098291166a085c6ecbd0e59e /app
parentc8e0734aad25aae09d4ecec0a2b8537c9efeac06 (diff)
lttr: fixed a bug in signals
Diffstat (limited to 'app')
-rw-r--r--app/lttr/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lttr/models.py b/app/lttr/models.py
index 93c900c..8f773ca 100644
--- a/app/lttr/models.py
+++ b/app/lttr/models.py
@@ -486,7 +486,7 @@ class PostcardSubscriber(models.Model):
verbose_name = _('Postcard Subscriber')
-def send_notification_email(self, newsletter, message, instance):
+def send_notification_email(newsletter, message, instance):
recipient_list = ['sng@luxagraf.net',]
subject = _('[%(site)s] New Subscriber to "%(object)s"') % {
'site': get_current_site(request).name,