1
0
mirror of https://github.com/django/django.git synced 2025-10-29 00:26:07 +00:00

Deprecated function-based loaders.

This commit is contained in:
Aymeric Augustin
2014-11-15 19:55:53 +01:00
parent 0bf99193f8
commit 1851dcf377
3 changed files with 15 additions and 0 deletions

View File

@@ -37,6 +37,12 @@ def find_template_loader(loader):
if hasattr(TemplateLoader, 'load_template_source'):
func = TemplateLoader(*args)
else:
warnings.warn(
"Function-based template loaders are deprecated. Please use "
"class-based template loaders instead. Inherit base.Loader "
"and provide a load_template_source() method.",
RemovedInDjango20Warning, stacklevel=2)
# Try loading module the old way - string is full path to callable
if args:
raise ImproperlyConfigured(