From a1a553eb52dc307679081d550d538f6ce67abe7f Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 19 Jan 2024 16:38:32 +0100 Subject: [PATCH] Overview report: Fix usage of internal names --- 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 6bf30f8370..2ce677b052 100644 --- a/src/pretix/plugins/reports/exporters.py +++ b/src/pretix/plugins/reports/exporters.py @@ -410,7 +410,7 @@ class OverviewReport(Report): for tup in items_by_category: if tup[0]: tdata.append([ - Paragraph(str(tup[0].name), tstyle_bold) + Paragraph(str(tup[0]), tstyle_bold) ]) for l, s in states: tdata[-1].append(str(tup[0].num[l][0]))