From 5d8c6cf65124a9fee4d2e28daf2563625a79781f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 10 Nov 2006 15:28:32 +0000 Subject: [PATCH] Fixed typo in docs/templates_python.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@4062 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/templates_python.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templates_python.txt b/docs/templates_python.txt index ae2582d7b8..7aeed935b9 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -321,7 +321,7 @@ Note:: def some_view(request): # ... - return render_to_response('my_template'html', + return render_to_response('my_template.html', my_data_dictionary, context_instance=RequestContext(request))