diff options
| -rw-r--r-- | pyramid/security.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/security.py b/pyramid/security.py index 01de80b22..011545939 100644 --- a/pyramid/security.py +++ b/pyramid/security.py @@ -126,9 +126,9 @@ def remember(request, userid=_marker, **kw): current :term:`authentication policy`. Common usage might look like so within the body of a view function (``response`` is assumed to be a :term:`WebOb` -style :term:`response` object - computed previously by the view code):: + computed previously by the view code): - .. code-block: python + .. code-block:: python from pyramid.security import remember headers = remember(request, 'chrism', password='123', max_age='86400') |
