mirror of https://github.com/pallets/flask.git
fix parentheses
This commit is contained in:
parent
694183ce22
commit
c67bfe551d
|
@ -54,7 +54,7 @@ its ``wsgi.server``, as well as your app or app factory.
|
|||
from hello import create_app
|
||||
|
||||
app = create_app()
|
||||
wsgi.server(eventlet.listen(("127.0.0.1", 8000), app)
|
||||
wsgi.server(eventlet.listen(("127.0.0.1", 8000)), app)
|
||||
|
||||
.. code-block:: text
|
||||
|
||||
|
|
Loading…
Reference in New Issue