Skip to content

Commit ad26ab4

Browse files
committed
Fix some changed Django import paths in settings.py
- Legacy-Id: 6897
1 parent 9b720d2 commit ad26ab4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/settings.py

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

108108
TEMPLATE_LOADERS = (
109-
'django.template.loaders.filesystem.load_template_source',
110-
'django.template.loaders.app_directories.load_template_source',
109+
'django.template.loaders.filesystem.Loader',
110+
'django.template.loaders.app_directories.Loader',
111111
'ietf.dbtemplate.template.load_template_source',
112112
)
113113

@@ -135,7 +135,7 @@
135135
)
136136

137137
TEMPLATE_CONTEXT_PROCESSORS = (
138-
'django.core.context_processors.auth',
138+
'django.contrib.auth.context_processors.auth',
139139
'django.core.context_processors.debug',
140140
'django.core.context_processors.i18n',
141141
'django.core.context_processors.request',

0 commit comments

Comments
 (0)