Remove print statement

This commit is contained in:
Andrew 2024-01-31 19:17:13 -05:00
parent a26159f510
commit ccf67002cd

View File

@ -190,7 +190,7 @@ class Webserver:
login_url="/login",
serve_traceback=debug_errors,
)
print(http_port)
if http_port != 0:
self.http_server = tornado.httpserver.HTTPServer(http_app)
self.http_server.listen(http_port)