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:
Adrian Holovaty 2005-10-14 22:29:13 +00:00
parent 6ee014725e
commit f575a4edaa
1 changed files with 2 additions and 2 deletions

View File

@ -42,9 +42,9 @@ def load_template_source(name, dirs=None):
for loader in template_source_loaders:
try:
return loader(name, dirs)
except template.TemplateDoesNotExist:
except TemplateDoesNotExist:
pass
raise template.TemplateDoesNotExist, name
raise TemplateDoesNotExist, name
class ExtendsError(Exception):
pass