Added total_seconds() helper for pythons before 2.7

This commit is contained in:
Armin Ronacher 2012-10-07 14:56:02 +02:00
parent 7f87091474
commit de5038f2fb

View file

@ -19,6 +19,10 @@ from . import Markup
from itsdangerous import URLSafeTimedSerializer, BadSignature
def total_seconds(td):
return td.days * 60 * 60 * 24 + td.seconds
class SessionMixin(object):
"""Expands a basic dictionary with an accessors that are expected
by Flask extensions and users for the session.
@ -267,7 +271,7 @@ class SecureCookieSessionInterface(SessionInterface):
val = request.cookies.get(app.session_cookie_name)
if not val:
return self.session_class()
max_age = app.permanent_session_lifetime.total_seconds()
max_age = total_seconds(app.permanent_session_lifetime)
try:
data = s.loads(val, max_age=max_age)
return self.session_class(data)