From 00a7187a7a87c2e286e3773de2482e03113d62c4 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 13 Jan 2022 16:45:15 +0100 Subject: [PATCH] Duplicate line break before invoice deadline --- src/pretix/base/services/invoices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/services/invoices.py b/src/pretix/base/services/invoices.py index 333cfe7d4d..c004f7079d 100644 --- a/src/pretix/base/services/invoices.py +++ b/src/pretix/base/services/invoices.py @@ -102,7 +102,7 @@ def build_invoice(invoice: Invoice) -> Invoice: payment = "" if invoice.event.settings.invoice_include_expire_date and invoice.order.status == Order.STATUS_PENDING: if payment: - payment += "
" + payment += "

" payment += pgettext("invoice", "Please complete your payment before {expire_date}.").format( expire_date=date_format(invoice.order.expires, "SHORT_DATE_FORMAT") )