From 49d3cd79a32873bdbb2c6638bd2bce3a1d28f425 Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Wed, 10 May 2017 14:34:06 +0200 Subject: [PATCH] workaround bug in sorl-thumbnail --- emels/settings/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emels/settings/__init__.py b/emels/settings/__init__.py index 5ad5b23..5163199 100644 --- a/emels/settings/__init__.py +++ b/emels/settings/__init__.py @@ -18,3 +18,8 @@ try: from emels.localsettings import * except ImportError: pass + +# required by sorl-thumbnail +# remove when this is fixed: +# https://github.com/mariocesar/sorl-thumbnail/issues/476 +TEMPLATE_DEBUG = False -- 2.20.1