From 4e29fed164dfa9c78f504ab30ad4d43facbbec6f Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 2 Dec 2021 09:46:12 +0100 Subject: [PATCH] spell fixing --- InvenTree/common/notifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/common/notifications.py b/InvenTree/common/notifications.py index 500ad10dd4..0469066fda 100644 --- a/InvenTree/common/notifications.py +++ b/InvenTree/common/notifications.py @@ -26,7 +26,7 @@ class NotificationMethod: # define arguments self.obj = obj self.entry_name = entry_name - self.receiers = receivers + self.receivers = receivers # gather recipients self.recipients = self.get_recipients() @@ -55,7 +55,7 @@ class EmailNotification(BulkNotificationMethod): def get_recipients(self): return EmailAddress.objects.filter( - user__in=self.receiers, + user__in=self.receivers, ) def send_bulk(self, context):