Merge pull request #1935 from sugizo/fix_anyserver_cherrypy

anyserver.py with cherrypy
This commit is contained in:
mdipierro
2018-06-01 12:45:21 -05:00
committed by GitHub

View File

@@ -43,8 +43,8 @@ class Servers:
@staticmethod
def cherrypy(app, address, **options):
from cherrypy import wsgiserver
server = wsgiserver.CherryPyWSGIServer(address, app)
from cheroot.wsgi import Server as WSGIServer
server = WSGIServer(address, app)
server.start()
@staticmethod