Merge pull request #2793 from tiagocoutinho/patch-1

Update gevent wsgi documentation
This commit is contained in:
Hsiaoming Yang 2018-05-21 15:57:11 +09:00 committed by GitHub
commit 54869a0017
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ Gevent
`greenlet`_ to provide a high-level synchronous API on top of `libev`_
event loop::
from gevent.wsgi import WSGIServer
from gevent.pywsgi import WSGIServer
from yourapplication import app
http_server = WSGIServer(('', 5000), app)