Skip to content

Commit

Permalink
anyserver can use cherrypy issue on #1934
Browse files Browse the repository at this point in the history
  • Loading branch information
sugizo committed Jun 1, 2018
1 parent 8d865f1 commit ba91760
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anyserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def log_request(*args, **kw):

@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
Expand Down

0 comments on commit ba91760

Please sign in to comment.