From 988eb85c0586e3cf6351a05a0372aa6cec015502 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 24 Jul 2020 11:40:45 +0200 Subject: [PATCH] Fix exporter issue --- src/pretix/plugins/reports/exporters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/plugins/reports/exporters.py b/src/pretix/plugins/reports/exporters.py index f18192d968..388a01f673 100644 --- a/src/pretix/plugins/reports/exporters.py +++ b/src/pretix/plugins/reports/exporters.py @@ -146,8 +146,8 @@ class Report(ReportlabExportMixin, BaseExporter): def identifier(self) -> str: raise NotImplementedError() - def __init__(self, event): - super().__init__(event) + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) class OverviewReport(Report):