Improved TemplateDoesNotExist error message in django.core.template_file

git-svn-id: http://code.djangoproject.com/svn/django/trunk@194 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-19 04:40:57 +00:00
parent 3ab5791383
commit 7d553c0650
1 changed files with 5 additions and 1 deletions

View File

@ -15,4 +15,8 @@ def load_template_source(template_name, template_dirs=None):
return open(filepath).read()
except IOError:
tried.append(filepath)
raise TemplateDoesNotExist, str(tried)
if template_dirs:
error_msg = "Tried %s" % tried
else:
error_msg = "Your TEMPLATE_DIRS settings is empty. Change it to point to at least one template directory."
raise TemplateDoesNotExist, error_msg