summaryrefslogtreecommitdiff
path: root/docs/templates_python.txt
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2006-01-11 14:46:38 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2006-01-11 14:46:38 +0000
commite9727a857bdf436c44410dd72a27b4f22fc6df03 (patch)
tree7a28d621d5bbe21059d1cf73f32b4ca046530c67 /docs/templates_python.txt
parenta44499542704f09479e37b8635d98487a4ca486d (diff)
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
Diffstat (limited to 'docs/templates_python.txt')
-rw-r--r--docs/templates_python.txt2
1 files changed, 1 insertions, 1 deletions
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])