From 547910beecf4e3f795c47731ddda9de707e7b245 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 9 Mar 2026 18:26:54 +0100 Subject: [PATCH] Voucher CSV download: Do not output "any product" (Z#23224795) (#5969) --- src/pretix/control/views/vouchers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/views/vouchers.py b/src/pretix/control/views/vouchers.py index 5bdabb277..832342566 100644 --- a/src/pretix/control/views/vouchers.py +++ b/src/pretix/control/views/vouchers.py @@ -131,7 +131,7 @@ class VoucherList(PaginationMixin, EventPermissionRequiredMixin, ListView): elif v.quota: prod = _('Any product in quota "{quota}"').format(quota=str(v.quota.name)) else: - prod = _('Any product') + prod = "" row = [ v.code, v.valid_until.isoformat() if v.valid_until else "",