From 1062b1e042b1c920c73ae12384086027521e3b8a Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 19 Jul 2005 05:58:19 +0000 Subject: [PATCH] Small formatting fix to tutorial03 git-svn-id: http://code.djangoproject.com/svn/django/trunk@201 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial03.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt index 74e2a941ca..173428788b 100644 --- a/docs/tutorial03.txt +++ b/docs/tutorial03.txt @@ -198,7 +198,7 @@ So let's use Django's template system to separate the design from Python:: That code loads the template called "polls/index" and passes it a context. The context is a dictionary mapping template variable names to Python objects. -Reload the page. Now you'll see an error: +Reload the page. Now you'll see an error:: TemplateDoesNotExist: Your TEMPLATE_DIRS settings is empty. Change it to point to at least one template directory.