Skip to content

Commit

Permalink
Overview report: Fix usage of internal names
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Jan 19, 2024
1 parent 18e1e77 commit a1a553e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pretix/plugins/reports/exporters.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def _table_story(self, doc, form_data, net=False):
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]))
Expand Down

0 comments on commit a1a553e

Please sign in to comment.