From 004ff55495ef3b4651e2ea2174f7fa12e8e50422 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 17 Feb 2016 17:13:59 +0100 Subject: [PATCH] Staticfile fix --- src/pretix/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/settings.py b/src/pretix/settings.py index 8cc5967908..6b444441a7 100644 --- a/src/pretix/settings.py +++ b/src/pretix/settings.py @@ -262,7 +262,7 @@ STATICFILES_FINDERS = ( STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static') -] +] if os.path.exists(os.path.join(BASE_DIR, 'static')) else [] # if os.path.exists(os.path.join(DATA_DIR, 'static')): # STATICFILES_DIRS.insert(0, os.path.join(DATA_DIR, 'static'))