Merge pull request #5029 from lettow-humain/main

Appending missing parentheses
This commit is contained in:
David Lord 2023-04-12 13:29:05 -07:00 committed by GitHub
commit 87698a2d5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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