Skip to content

Commit

Permalink
minor fix for Flask 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Apr 30, 2018
1 parent 9d4a5a4 commit 39649c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_socketio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __call__(self, environ, start_response):
start_response)


class _ManagedSession(SessionMixin, dict):
class _ManagedSession(dict, SessionMixin):
"""This class is used for user sessions that are managed by
Flask-SocketIO. It is simple dict, expanded with the Flask session
attributes."""
Expand Down

0 comments on commit 39649c8

Please sign in to comment.