From 1bcca566abc2bee3b32af8c6dba62ad6a61d6980 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 26 Jun 2017 19:15:13 +0200 Subject: [PATCH] Remove SVG from supported files for invoice generation --- src/pretix/control/forms/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index dbc2b85b52..cde430b999 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -467,7 +467,7 @@ class InvoiceSettingsForm(SettingsForm): ) invoice_logo_image = ExtFileField( label=_('Logo image'), - ext_whitelist=(".png", ".jpg", ".svg", ".gif", ".jpeg"), + ext_whitelist=(".png", ".jpg", ".gif", ".jpeg"), required=False, help_text=_('We will show your logo with a maximal height and width of 2.5 cm.') )