diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-12-22 11:35:17 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-12-22 11:39:55 +0100 |
| commit | 2fef9e5375b0267734392080858d9fced15ee2f9 (patch) | |
| tree | 6bb12e97dd1d607f57f36ae34c0b492dbcf443ba /tests/template_tests | |
| parent | 99bd39ef6e1017f75c71fc276f43a941fe6081ea (diff) | |
Moved apps back in the toplevel django namespace.
Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.
Diffstat (limited to 'tests/template_tests')
| -rw-r--r-- | tests/template_tests/test_loaders.py | 2 | ||||
| -rw-r--r-- | tests/template_tests/tests.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/test_loaders.py b/tests/template_tests/test_loaders.py index 551bd7fb72..eadb3fb02a 100644 --- a/tests/template_tests/test_loaders.py +++ b/tests/template_tests/test_loaders.py @@ -20,7 +20,7 @@ except ImportError: pkg_resources = None -from django.core.apps import app_cache +from django.apps import app_cache from django.template import TemplateDoesNotExist, Context from django.template.loaders.eggs import Loader as EggLoader from django.template import loader diff --git a/tests/template_tests/tests.py b/tests/template_tests/tests.py index 61a46a81f9..4dc0925070 100644 --- a/tests/template_tests/tests.py +++ b/tests/template_tests/tests.py @@ -16,7 +16,7 @@ import unittest import warnings from django import template -from django.core.apps import app_cache +from django.apps import app_cache from django.core import urlresolvers from django.template import (base as template_base, loader, Context, RequestContext, Template, TemplateSyntaxError) |
