From 154f10af8ff613c174373173206704d345a95181 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Mon, 4 Aug 2025 16:35:19 +0200 Subject: [PATCH] Fix bulk voucher CSV field description (#5120) --- src/pretix/control/forms/vouchers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/vouchers.py b/src/pretix/control/forms/vouchers.py index 917dea87ab..669926afce 100644 --- a/src/pretix/control/forms/vouchers.py +++ b/src/pretix/control/forms/vouchers.py @@ -303,7 +303,7 @@ class VoucherBulkForm(VoucherForm): }), required=False, help_text=_('You can either supply a list of email addresses with one email address per line, or the contents ' - 'of a CSV file with a title column and one or more of the columns "email", "number", "name", ' + 'of a CSV file with a title row and one or more of the columns "email", "number", "name", ' 'or "tag".') ) Recipient = namedtuple('Recipient', 'email number name tag')