Skip to content

Commit b94e110

Browse files
committed
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
1 parent 2dc4454 commit b94e110

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

ietf/settings.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,8 @@
106106
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
107107

108108
TEMPLATE_LOADERS = (
109-
('django.template.loaders.cached.Loader',
110-
('django.template.loaders.filesystem.Loader',
111-
'django.template.loaders.app_directories.Loader',)),
109+
'django.template.loaders.filesystem.Loader',
110+
'django.template.loaders.app_directories.Loader',
112111
'ietf.dbtemplate.template.Loader',
113112
)
114113

0 commit comments

Comments
 (0)