From c36dd30bce298839c8ca007f5ce199dbf4bab0df Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Mon, 22 May 2023 18:26:24 +0200 Subject: [PATCH] fix(kfet): Affiche la bonne information --- kfet/management/commands/sendrappelsnegatifs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kfet/management/commands/sendrappelsnegatifs.py b/kfet/management/commands/sendrappelsnegatifs.py index 29776284..a1a8b7bc 100644 --- a/kfet/management/commands/sendrappelsnegatifs.py +++ b/kfet/management/commands/sendrappelsnegatifs.py @@ -44,7 +44,7 @@ class Command(BaseCommand): for neg in accounts_periodic_mail: neg.send_rappel() - self.stdout.write("Mail de rappel pour {neg.account} envoyé avec succès.") + self.stdout.write(f"Mail de rappel pour {neg.account} envoyé avec succès.") if not (accounts_first_mail.exists() or accounts_periodic_mail.exists()): self.stdout.write("Aucun mail à envoyer.")