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") )