From 88a953d85cf5068953960a38c7443f4629f8d860 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 7 Feb 2023 13:03:59 +0100 Subject: [PATCH] bugfix --- .../management/commands/teleforma-publish-notify-conferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-publish-notify-conferences.py b/teleforma/management/commands/teleforma-publish-notify-conferences.py index f8310736..58f2f8a5 100644 --- a/teleforma/management/commands/teleforma-publish-notify-conferences.py +++ b/teleforma/management/commands/teleforma-publish-notify-conferences.py @@ -132,7 +132,7 @@ class Command(BaseCommand): print("can't notify", student) continue - for user in User.objects.filter(is_staff=True) + for user in User.objects.filter(is_staff=True): notify(user, message, url) publication.notified = True -- 2.39.5