diff --git a/src/pretix/plugins/checkinlists/exporters.py b/src/pretix/plugins/checkinlists/exporters.py index 529ab7bd9..85b3d695f 100644 --- a/src/pretix/plugins/checkinlists/exporters.py +++ b/src/pretix/plugins/checkinlists/exporters.py @@ -382,8 +382,11 @@ class PDFCheckinList(ReportlabExportMixin, CheckInListMixin, BaseExporter): iac = "" name = op.attendee_name or (op.addon_to.attendee_name if op.addon_to else '') or ian - if iac: - name += "
" + iac + company = op.company or (op.addon_to.company if op.addon_to else '') or iac + if company: + if name: + name += "
" + name += company item = "{} ({})".format( str(op.item) + (" – " + str(op.variation.value) if op.variation else ""),