Skip to content

Commit 0113b0e

Browse files
authored
Fix typo (#197)
1 parent 74ef117 commit 0113b0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webapp.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,12 @@ async def startWebService():
232232
PORT = 80 # Port to listen on
233233
print(HOST,PORT)
234234

235-
wsgiServer = server.WSGIServer(80, application=web_app)
235+
wsgiServer = server.WSGIServer(PORT, application=web_app)
236236

237237
print(f"open this IP in your browser: http://{HOST}:{PORT}/")
238238

239239
# Start the server
240240
wsgiServer.start()
241241
while True:
242242
wsgiServer.update_poll()
243-
await asyncio.sleep(0)
243+
await asyncio.sleep(0)

0 commit comments

Comments
 (0)