From ac68470c89c08045dce51261cfbcf6012a62b4ba Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 16 Jun 2015 20:41:40 -0400 Subject: [PATCH] Don't cache compiled templates by default --- mayan/settings/base.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 39a2bcefaa..940aef61a0 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -189,10 +189,8 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'mayan', 'media', 'static') # List of callables that know how to import templates from various sources. TEMPLATE_LOADERS = ( - ('django.template.loaders.cached.Loader', ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', - )), + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader' ) TEMPLATE_CONTEXT_PROCESSORS = (