From b7f5950398346c2f914ed27ffaf976cd22c096f2 Mon Sep 17 00:00:00 2001 From: Phin Wolkwitz Date: Thu, 6 Aug 2026 17:23:34 +0200 Subject: [PATCH] Remove linebreak --- src/pretix/plugins/sendmail/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pretix/plugins/sendmail/models.py b/src/pretix/plugins/sendmail/models.py index 7300928fa0..eebb69d290 100644 --- a/src/pretix/plugins/sendmail/models.py +++ b/src/pretix/plugins/sendmail/models.py @@ -260,8 +260,7 @@ class Rule(models.Model, LoggingMixin): SEND_TO_CHOICES = [ (CUSTOMERS, _("Everyone who created a ticket order")), - (ATTENDEES, - _("Every attendee (falling back to the order contact when no attendee email address is given)")), + (ATTENDEES, _("Every attendee (falling back to the order contact when no attendee email address is given)")), (BOTH, _('Both (all order contact addresses and all attendee email addresses)')) ]