From 0f000b7ae5b257451fbe3d266fba902ee27ba54e Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Aug 2006 01:49:11 +0000 Subject: [PATCH] Fixed incorrect error message in django.template.loaders.filesystem if you pass in template_dirs=None. Thanks, Martin Glueck git-svn-id: http://code.djangoproject.com/svn/django/trunk@3575 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/template/loaders/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/template/loaders/filesystem.py b/django/template/loaders/filesystem.py index 0c94021fb8..d01f54c5fe 100644 --- a/django/template/loaders/filesystem.py +++ b/django/template/loaders/filesystem.py @@ -17,7 +17,7 @@ def load_template_source(template_name, template_dirs=None): return (open(filepath).read(), filepath) except IOError: tried.append(filepath) - if template_dirs: + if tried: error_msg = "Tried %s" % tried else: error_msg = "Your TEMPLATE_DIRS setting is empty. Change it to point to at least one template directory."