From e9727a857bdf436c44410dd72a27b4f22fc6df03 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 11 Jan 2006 14:46:38 +0000 Subject: [PATCH] Fixed error in docs/templates_python.txt (thanks, Alice) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1909 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 02d943baf1..fcb6a22230 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -272,7 +272,7 @@ optional, third positional argument, ``processors``. In this example, the def some_view(request): # ... - return DjangoContext({ + return DjangoContext(request, { 'foo': 'bar', }, [ip_address_processor])