Browse Source

fix backwards compatible problems with python-engineio 3.0

pull/221/head
Miguel Grinberg 6 years ago
parent
commit
fce2006eee
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 4
      socketio/middleware.py
  2. 4
      socketio/tornado.py

4
socketio/middleware.py

@ -39,3 +39,7 @@ class WSGIApp(engineio.WSGIApp):
class Middleware(WSGIApp):
"""This class has been renamed to WSGIApp and is now deprecated."""
def __init__(self, socketio_app, wsgi_app=None,
socketio_path='socket.io'):
super(Middleware, self).__init__(socketio_app, wsgi_app,
socketio_path=socketio_path)

4
socketio/tornado.py

@ -1,5 +1,9 @@
import sys
if sys.version_info >= (3, 5):
try:
from engineio.async_drivers.tornado import get_tornado_handler as \
get_engineio_handler
except ImportError:
from engineio.async_tornado import get_tornado_handler as \
get_engineio_handler

Loading…
Cancel
Save