summaryrefslogtreecommitdiff
path: root/docs/narr/security.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-28 01:54:50 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-28 01:54:50 +0000
commit6103bf8050466329aba930df000f042dbdff8efa (patch)
tree1dd16982214ff634d7c46082eb86468bf24a73b9 /docs/narr/security.rst
parent0970432b72d8f4360b69dc58223ea0725d747d36 (diff)
downloadpyramid-6103bf8050466329aba930df000f042dbdff8efa.tar.gz
pyramid-6103bf8050466329aba930df000f042dbdff8efa.tar.bz2
pyramid-6103bf8050466329aba930df000f042dbdff8efa.zip
Document the request-only calling convention as the default.
Diffstat (limited to 'docs/narr/security.rst')
-rw-r--r--docs/narr/security.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/security.rst b/docs/narr/security.rst
index acc1dff01..a733aef9b 100644
--- a/docs/narr/security.rst
+++ b/docs/narr/security.rst
@@ -92,7 +92,7 @@ module of your project's package
from models import Blog
@bfg_view(for_=Blog, name='add_entry.html', permission='add')
- def blog_entry_add_view(context, request):
+ def blog_entry_add_view(request):
""" Add blog entry code goes here """
pass