summaryrefslogtreecommitdiff
path: root/django/template/utils.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-12-18 21:54:02 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-12-28 17:02:31 +0100
commitb7282db833b833ae74e6e289d45365bac25995af (patch)
tree33bf609857e5ad9c851536788d60504a40157ff2 /django/template/utils.py
parent9eb4f28e89692440e01c40a179a0b2111f4f0e04 (diff)
Raised a warning when using the legacy TEMPLATE_* settings.
All tests now rely on TEMPLATES.
Diffstat (limited to 'django/template/utils.py')
-rw-r--r--django/template/utils.py14
1 files changed, 6 insertions, 8 deletions
diff --git a/django/template/utils.py b/django/template/utils.py
index 140d591e53..3303c1ccb7 100644
--- a/django/template/utils.py
+++ b/django/template/utils.py
@@ -1,14 +1,14 @@
from collections import Counter, OrderedDict
import os
import sys
-# import warnings
+import warnings
from django.apps import apps
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
from django.utils import lru_cache
from django.utils import six
-# from django.utils.deprecation import RemovedInDjango20Warning
+from django.utils.deprecation import RemovedInDjango20Warning
from django.utils.functional import cached_property
from django.utils.module_loading import import_string
@@ -32,12 +32,10 @@ class EngineHandler(object):
self._templates = settings.TEMPLATES
if not self._templates:
- # TODO: re-enable this warning once the entire test suite has been
- # updated to rely on TEMPLATES instead of legacy settings.
- # warnings.warn(
- # "You haven't defined a TEMPLATES setting. You must do so "
- # "before upgrading to Django 2.0. Otherwise Django will be "
- # "unable to load templates.", RemovedInDjango20Warning)
+ warnings.warn(
+ "You haven't defined a TEMPLATES setting. You must do so "
+ "before upgrading to Django 2.0. Otherwise Django will be "
+ "unable to load templates.", RemovedInDjango20Warning)
self._templates = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',