fix parentheses

This commit is contained in:
lettow-humain 2023-03-17 11:58:49 +01:00 committed by David Lord
parent 694183ce22
commit c67bfe551d
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
1 changed files with 1 additions and 1 deletions

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