diff options
| -rw-r--r-- | docs/templates_python.txt | 2 |
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]) |
