Disable the caching template loader again, interesting as may be, it

turns out to be really annoying when developing as it is not clever
enough to do cache invalidation, so changing a template and retesting
requires restarting the dev server
 - Legacy-Id: 6929
This commit is contained in:
Ole Laursen 2013-12-13 17:30:39 +00:00
parent 2dc4454772
commit b94e110a29

View file

@ -106,9 +106,8 @@ SESSION_COOKIE_AGE = 43200 # 12 hours
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
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',
'ietf.dbtemplate.template.Loader',
)