From 0f3f476dcfd2974aa73a3c741e0f6d94d662885e Mon Sep 17 00:00:00 2001 From: Petr Zemek Date: Mon, 27 Oct 2014 11:40:50 +0100 Subject: [PATCH] Fix a typo in the description of SecureCookieSession. The term "base class" (with a space) is used in another file, so use it here as well to make the wording consistent across the whole project. --- flask/sessions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/sessions.py b/flask/sessions.py index c2ba3213..2bf455f4 100644 --- a/flask/sessions.py +++ b/flask/sessions.py @@ -110,7 +110,7 @@ session_json_serializer = TaggedJSONSerializer() class SecureCookieSession(CallbackDict, SessionMixin): - """Baseclass for sessions based on signed cookies.""" + """Base class for sessions based on signed cookies.""" def __init__(self, initial=None): def on_update(self):