From 180904cdc2d9853678651e81e77e45acfaf0c036 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 11 Jun 2018 14:29:29 +0200 Subject: [PATCH] Fix KeyError --- 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 75404aa82a..c0798ee523 100644 --- a/src/pretix/control/views/vouchers.py +++ b/src/pretix/control/views/vouchers.py @@ -70,7 +70,7 @@ class VoucherList(PaginationMixin, EventPermissionRequiredMixin, ListView): else: prod = '%s' % str(v.item) elif v.quota: - prod = _('Any product in quota "{quota}"').format(uota=str(v.quota.name)) + prod = _('Any product in quota "{quota}"').format(quota=str(v.quota.name)) row = [ v.code, v.valid_until.isoformat() if v.valid_until else "",