From 02278660bc7a442ff06577016f42ba53e44ddb83 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 6 Nov 2020 17:38:48 +0100 Subject: [PATCH] Fix issue in pdf report exporter --- src/pretix/plugins/reports/exporters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/plugins/reports/exporters.py b/src/pretix/plugins/reports/exporters.py index fd23ad8551..02b7674c08 100644 --- a/src/pretix/plugins/reports/exporters.py +++ b/src/pretix/plugins/reports/exporters.py @@ -291,7 +291,7 @@ class OverviewReport(Report): for tup in items_by_category: if tup[0]: tdata.append([ - Paragraph(tup[0].name, tstyle_bold) + Paragraph(str(tup[0].name), tstyle_bold) ]) for l, s in states: tdata[-1].append(str(tup[0].num[l][0]))