diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2011-01-29 15:03:39 +0000 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2011-01-29 15:03:39 +0000 |
| commit | 4392c8e67ed6009602ff72af0a786c1053d55302 (patch) | |
| tree | dbd63a6bcfa2cc4d7a570ab5658635814857de77 | |
| parent | 34288ec2f2d78d39c0d71ab479bb67f131139bc3 (diff) | |
Fixed #15158 -- Fixed error introduced in r15252 in rendering of the template post morten section of the 500 error debug page with loaders other than the file system or application dir loaders. Refs #15122. Thanks gsf for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/views/debug.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/django/views/debug.py b/django/views/debug.py index 21e7f72e6b..6bb6a0bd93 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -91,16 +91,18 @@ class ExceptionReporter: module = import_module(loader.__module__) if hasattr(loader, '__class__'): source_list_func = loader.get_template_sources - loader_name = loader.__module__ + '.' + loader.__class__.__name__ else: # NOTE: Remember to remove this branch when we deprecate old template loaders in 1.4 source_list_func = module.get_template_sources - loader_name = loader.__module__ + '.' + loader.__name__ # 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): 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__ self.loader_debug_info.append({ 'loader': loader_name, 'templates': template_list, |
