Fixed typo in filesystem template-loader error message
git-svn-id: http://code.djangoproject.com/svn/django/trunk@890 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
dc3f6e4113
commit
e8fda9091a
|
@ -17,6 +17,6 @@ def load_template_source(template_name, template_dirs=None):
|
|||
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."
|
||||
error_msg = "Your TEMPLATE_DIRS setting is empty. Change it to point to at least one template directory."
|
||||
raise TemplateDoesNotExist, error_msg
|
||||
load_template_source.is_usable = True
|
||||
|
|
Loading…
Reference in New Issue