diff --git a/src/pretix/plugins/checkinlists/exporters.py b/src/pretix/plugins/checkinlists/exporters.py
index 34f28eff9e..72b9cb61a7 100644
--- a/src/pretix/plugins/checkinlists/exporters.py
+++ b/src/pretix/plugins/checkinlists/exporters.py
@@ -319,7 +319,7 @@ class PDFCheckinList(ReportlabExportMixin, CheckInListMixin, BaseExporter):
if self.event.has_subevents and not cl.subevent:
item += '
{} ({})'.format(
op.subevent.name,
- date_format(op.subevent.date_from, 'SHORT_DATETIME_FORMAT')
+ date_format(op.subevent.date_from.astimezone(self.event.timezone), 'SHORT_DATETIME_FORMAT')
)
if op.seat:
item += '
' + str(op.seat)