From f4a9dbb546d54ad61d47e68e10a4a9dc0f164657 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 9 May 2017 17:23:17 +0200 Subject: [PATCH] Fix migration of old ticket styles --- src/pretix/plugins/ticketoutputpdf/ticketoutput.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/plugins/ticketoutputpdf/ticketoutput.py b/src/pretix/plugins/ticketoutputpdf/ticketoutput.py index a95798aed9..00420c6453 100644 --- a/src/pretix/plugins/ticketoutputpdf/ticketoutput.py +++ b/src/pretix/plugins/ticketoutputpdf/ticketoutput.py @@ -199,7 +199,7 @@ class PdfTicketOutput(BaseTicketOutput): }) def _legacy_layout(self): - if self.settings.get('ticketoutput_pdf_background'): + if self.settings.get('background'): return self._migrate_from_old_settings() else: return self._default_layout()