gevent has deprecated .wsgi, should use .pywsgi instead

https://github.com/gevent/gevent/blob/master/doc/api/gevent.wsgi.rst
(cherry picked from commit c9ca451568)
This commit is contained in:
Brian C. Lane 2018-06-05 14:57:21 -07:00
parent fd2b5de02c
commit b9fe90000e
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import subprocess
import tempfile import tempfile
from threading import Lock from threading import Lock
from gevent import socket from gevent import socket
from gevent.wsgi import WSGIServer from gevent.pywsgi import WSGIServer
from pylorax import vernum from pylorax import vernum
from pylorax.api.cmdline import lorax_composer_parser from pylorax.api.cmdline import lorax_composer_parser