From 45d963d6daa4315388530d58c777b838d5465c65 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Wed, 10 Aug 2011 23:50:43 +0200 Subject: [PATCH] The session interface is new in 0.8 not 0.7 --- flask/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/app.py b/flask/app.py index 52a54b29..35577984 100644 --- a/flask/app.py +++ b/flask/app.py @@ -255,7 +255,7 @@ class Flask(_PackageBoundObject): #: the session interface to use. By default an instance of #: :class:`~flask.sessions.SecureCookieSessionInterface` is used here. #: - #: .. versionadded:: 0.7 + #: .. versionadded:: 0.8 session_interface = SecureCookieSessionInterface() def __init__(self, import_name, static_path=None, static_url_path=None,