Fix issue in pdf report exporter

This commit is contained in:
Raphael Michel
2020-11-06 17:38:48 +01:00
parent 01b90ded36
commit 02278660bc

View File

@@ -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]))