From 0113b0e00419a6b9a26b5253e297b039cf937a69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Gina=C5=82?= <70772418+piotr-ginal@users.noreply.github.com> Date: Sun, 17 Sep 2023 22:59:29 +0200 Subject: [PATCH] Fix typo (#197) --- webapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp.py b/webapp.py index a87c78a..39e5619 100644 --- a/webapp.py +++ b/webapp.py @@ -232,7 +232,7 @@ async def startWebService(): PORT = 80 # Port to listen on print(HOST,PORT) - wsgiServer = server.WSGIServer(80, application=web_app) + wsgiServer = server.WSGIServer(PORT, application=web_app) print(f"open this IP in your browser: http://{HOST}:{PORT}/") @@ -240,4 +240,4 @@ async def startWebService(): wsgiServer.start() while True: wsgiServer.update_poll() - await asyncio.sleep(0) \ No newline at end of file + await asyncio.sleep(0)