diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-11-28 01:54:50 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-11-28 01:54:50 +0000 |
| commit | 6103bf8050466329aba930df000f042dbdff8efa (patch) | |
| tree | 1dd16982214ff634d7c46082eb86468bf24a73b9 /docs/narr/security.rst | |
| parent | 0970432b72d8f4360b69dc58223ea0725d747d36 (diff) | |
| download | pyramid-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.rst | 2 |
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 |
