From deb513c7fe5a285e2bdeff99424e243d7b4f7829 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Fri, 8 Jul 2011 14:38:49 +0200 Subject: [PATCH] The session interface is new in 0.8, not 0.7 --- docs/api.rst | 2 +- flask/sessions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index 99071f87..b5254996 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -198,7 +198,7 @@ To access the current session you can use the :class:`session` object: Session Interface ----------------- -.. versionadded:: 0.7 +.. versionadded:: 0.8 The session interface provides a simple way to replace the session implementation that Flask is using. diff --git a/flask/sessions.py b/flask/sessions.py index 8f59a4f7..ee006cda 100644 --- a/flask/sessions.py +++ b/flask/sessions.py @@ -89,7 +89,7 @@ class SessionInterface(object): app = Flask(__name__) app.session_interface = MySessionInterface() - .. versionadded:: 0.7 + .. versionadded:: 0.8 """ #: :meth:`make_null_session` will look here for the class that should