From 8d5b4d190c38360413e105d996da1370835bec46 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 22 Nov 2019 16:10:58 +0100 Subject: [PATCH] Fix TypeError introduced in 50dabb5b2 --- src/pretix/plugins/checkinlists/exporters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/plugins/checkinlists/exporters.py b/src/pretix/plugins/checkinlists/exporters.py index 1976a00384..1bd028f4d5 100644 --- a/src/pretix/plugins/checkinlists/exporters.py +++ b/src/pretix/plugins/checkinlists/exporters.py @@ -259,7 +259,7 @@ class PDFCheckinList(ReportlabExportMixin, CheckInListMixin, BaseExporter): op.order.code, Paragraph(name, self.get_style()), Paragraph(str(op.item) + (" – " + str(op.variation.value) if op.variation else "") + "
" + - ((str(op.seat) + " / ") if op.seat else None) + + ((str(op.seat) + " / ") if op.seat else "") + money_filter(op.price, self.event.currency), self.get_style()), ] acache = {}