diff --git a/src/pretix/control/views/typeahead.py b/src/pretix/control/views/typeahead.py index 1ec61d6693..3a4b10e545 100644 --- a/src/pretix/control/views/typeahead.py +++ b/src/pretix/control/views/typeahead.py @@ -583,7 +583,7 @@ def itemvarquota_select2(request, **kwargs): if variations: choices.append((str(i.pk), _('{product} – Any variation').format(product=i), '', not i.active)) for v in variations: - choices.append(('%d-%d' % (i.pk, v.pk), '%s – %s' % (i, v.value), '', not i.active)) + choices.append(('%d-%d' % (i.pk, v.pk), '%s – %s' % (i, v.value), '', not v.active)) else: choices.append((str(i.pk), str(i), '', not i.active)) for q in quotaqs: