From: Guillaume Pellerin Date: Sun, 12 Jul 2026 17:46:41 +0000 (+0200) Subject: bugfix X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=b58e0d6578cb24fc2fe5c4828c870aba7c9ed52e;p=teleforma.git bugfix --- diff --git a/teleforma/exam/models.py b/teleforma/exam/models.py index e391e099..a04ecc12 100755 --- a/teleforma/exam/models.py +++ b/teleforma/exam/models.py @@ -457,7 +457,7 @@ class Script(BaseResource): mess = Message(sender=sender, recipient=self.author, subject=subject[:119], body=text) mess.moderation_status = 'a' - # mess.save() + mess.save() site = Site.objects.all()[0] notify_user(mess, 'acceptance', site) @@ -475,7 +475,7 @@ class Script(BaseResource): mess = Message(sender=self.corrector, recipient=self.author, subject=subject[:119], body=text) mess.moderation_status = 'a' - # mess.save() + mess.save() notify_user(mess, 'acceptance', site)