From f5d38dc4fcdf1d8edb3e42c67b6e0e1127cd00c7 Mon Sep 17 00:00:00 2001 From: enkore Date: Sat, 17 Aug 2013 21:32:52 +0200 Subject: [PATCH] Update sessions.py get_cookie_path: fix docstring --- flask/sessions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/sessions.py b/flask/sessions.py index d6b7e5ae..cdebe4b0 100644 --- a/flask/sessions.py +++ b/flask/sessions.py @@ -223,7 +223,7 @@ class SessionInterface(object): def get_cookie_path(self, app): """Returns the path for which the cookie should be valid. The - default implementation uses the value from the SESSION_COOKIE_PATH`` + default implementation uses the value from the ``SESSION_COOKIE_PATH`` config var if it's set, and falls back to ``APPLICATION_ROOT`` or uses ``/`` if it's `None`. """