This commit is contained in:
sugizo
2018-06-01 14:51:14 +07:00
parent 8d865f1c5f
commit ba917605ac
+2 -2
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