1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Moved engine-related exceptions to django.template.exceptions.

With the introduction of multiple template engines these exceptions are no
longer DTL-specific. It makes more sense for them to be moved out of
DTL-related modules.
This commit is contained in:
Preston Timmons
2015-04-24 14:35:30 -05:00
parent adff499e47
commit d17a035132
16 changed files with 80 additions and 60 deletions

View File

@@ -14,7 +14,7 @@ from unittest import skipIf
from django.core import mail
from django.core.files.uploadedfile import SimpleUploadedFile
from django.core.urlresolvers import reverse
from django.template.base import TemplateDoesNotExist
from django.template import TemplateDoesNotExist
from django.test import RequestFactory, TestCase, override_settings
from django.test.utils import LoggingCaptureMixin
from django.utils import six