forked from orbit-oss/flask
Fixed an issue with an unused module for Python 2.5 (flask.session)
This commit is contained in:
parent
766522cb58
commit
0dd9dc37b6
2 changed files with 5 additions and 1 deletions
|
|
@ -13,7 +13,7 @@
|
|||
from warnings import warn
|
||||
warn(DeprecationWarning('please use flask.sessions instead'))
|
||||
|
||||
from .sessions import *
|
||||
from .sessions import SecureCookieSession, NullSession
|
||||
|
||||
Session = SecureCookieSession
|
||||
_NullSession = NullSession
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue