From d489806df1eabd4565ef32d22c761f8169c6c560 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 16 May 2024 11:11:58 +0200 Subject: [PATCH] Fix indentation error from copy/pasting text for sponsor emails The actual emails going out were correctly indented, but the notification to admins that it had been sent had a weird mix. --- .../management/commands/sponsor_send_emails.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/postgresqleu/confsponsor/management/commands/sponsor_send_emails.py b/postgresqleu/confsponsor/management/commands/sponsor_send_emails.py index c028fbd8..804dab04 100644 --- a/postgresqleu/confsponsor/management/commands/sponsor_send_emails.py +++ b/postgresqleu/confsponsor/management/commands/sponsor_send_emails.py @@ -68,15 +68,15 @@ class Command(BaseCommand): conference, "Email sent to sponsors", """An email was sent to sponsors of {0} - with subject '{1}'. +with subject '{1}'. - It was sent to {2}. +It was sent to {2}. - ------ - {3} - ------ +------ +{3} +------ - To view it on the site, go to {4}/events/sponsor/admin/{5}/viewmail/{6}/""".format( +To view it on the site, go to {4}/events/sponsor/admin/{5}/viewmail/{6}/""".format( conference, msg.subject, deststr, -- 2.39.5