From 4f1b086218437870c0d36b4b9b36c5376cad9206 Mon Sep 17 00:00:00 2001 From: "Daniel D. Beck" Date: Sat, 30 Oct 2010 20:55:41 -0400 Subject: [PATCH] Fixed: incorrect indentation level for session's permanent attribute Signed-off-by: Armin Ronacher --- docs/api.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index 00b5105e..5de90d01 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -187,12 +187,12 @@ To access the current session you can use the :class:`session` object: # so mark it as modified yourself session.modified = True - .. attribute:: permanent + .. attribute:: permanent - If set to `True` the session life for - :attr:`~flask.Flask.permanent_session_lifetime` seconds. The - default is 31 days. If set to `False` (which is the default) the - session will be deleted when the user closes the browser. + If set to `True` the session life for + :attr:`~flask.Flask.permanent_session_lifetime` seconds. The + default is 31 days. If set to `False` (which is the default) the + session will be deleted when the user closes the browser. Application Globals