mirror of https://github.com/django/django.git
Fixed small namespace bug in [867]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
6ee014725e
commit
f575a4edaa
|
@ -42,9 +42,9 @@ def load_template_source(name, dirs=None):
|
||||||
for loader in template_source_loaders:
|
for loader in template_source_loaders:
|
||||||
try:
|
try:
|
||||||
return loader(name, dirs)
|
return loader(name, dirs)
|
||||||
except template.TemplateDoesNotExist:
|
except TemplateDoesNotExist:
|
||||||
pass
|
pass
|
||||||
raise template.TemplateDoesNotExist, name
|
raise TemplateDoesNotExist, name
|
||||||
|
|
||||||
class ExtendsError(Exception):
|
class ExtendsError(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue