Skip to content

Commit

Permalink
Fixed an issue with an unused module for Python 2.5 (flask.session)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Oct 1, 2011
1 parent 766522c commit 0dd9dc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES
Expand Up @@ -8,6 +8,10 @@ Version 0.8.1

Bugfix release, release date to be decided

- Fixed an issue with the undocumented `flask.session` module to not
work properly on Python 2.5. It should not be used but did cause
some problems for package managers.

Version 0.8
-----------

Expand Down
2 changes: 1 addition & 1 deletion flask/session.py
Expand Up @@ -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

0 comments on commit 0dd9dc3

Please sign in to comment.