summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-04-02 18:48:18 +0000
committerRamiro Morales <cramm0@gmail.com>2011-04-02 18:48:18 +0000
commitecdcf477f9fefd976dd19d1a84a6d36204b4e404 (patch)
tree5e36386a8b01cd4b85f38fe5ba1837b5c08d4f3d
parent74f7ad32a51c7bf9e013f1865e4039ac07fd71b9 (diff)
Removed support code for deprecated module-based template loaders from debug view postmortem.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16003 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/views/debug.py13
1 files changed, 3 insertions, 10 deletions
diff --git a/django/views/debug.py b/django/views/debug.py
index 127d790aa4..38a32a889f 100644
--- a/django/views/debug.py
+++ b/django/views/debug.py
@@ -88,21 +88,14 @@ class ExceptionReporter(object):
self.loader_debug_info = []
for loader in template_source_loaders:
try:
- module = import_module(loader.__module__)
- if hasattr(loader, '__class__'):
- source_list_func = loader.get_template_sources
- else: # NOTE: Remember to remove this branch when we deprecate old template loaders in 1.4
- source_list_func = module.get_template_sources
+ source_list_func = loader.get_template_sources
# NOTE: This assumes exc_value is the name of the template that
# the loader attempted to load.
template_list = [{'name': t, 'exists': os.path.exists(t)} \
for t in source_list_func(str(self.exc_value))]
- except (ImportError, AttributeError):
+ except AttributeError:
template_list = []
- if hasattr(loader, '__class__'):
- loader_name = loader.__module__ + '.' + loader.__class__.__name__
- else: # NOTE: Remember to remove this branch when we deprecate old template loaders in 1.4
- loader_name = loader.__module__ + '.' + loader.__name__
+ loader_name = loader.__module__ + '.' + loader.__class__.__name__
self.loader_debug_info.append({
'loader': loader_name,
'templates': template_list,