From 507d6d35081bc665a4cfa8379f13536345c8a0ce Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sat, 9 Nov 2024 09:59:57 +1100 Subject: [PATCH] close p tag properly --- blogs/management/commands/send_weekly_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blogs/management/commands/send_weekly_email.py b/blogs/management/commands/send_weekly_email.py index 88a19d4..4b69565 100644 --- a/blogs/management/commands/send_weekly_email.py +++ b/blogs/management/commands/send_weekly_email.py @@ -137,7 +137,7 @@ class Command(BaseCommand): ) dates_string = f"

Closes:{c_date:%a} {c_date.day} {c_date:%B}

" description_string = ( - f"

{instance.details}

{instance.event.description}

" + f"

{instance.details}

{instance.event.description}

" ) string_list = [title_string, dates_string, description_string]