run: remove trailing period on webgui url

This commit is contained in:
nahuhh
2025-10-10 02:24:42 +00:00
parent 918bf60200
commit cc6fbb9685

View File

@@ -625,7 +625,7 @@ def runClient(
swap_client.start()
if "htmlhost" in settings:
swap_client.log.info(
"Starting http server at http://%s:%d."
"Starting http server at http://%s:%d"
% (settings["htmlhost"], settings["htmlport"])
)
allow_cors = (
@@ -644,7 +644,7 @@ def runClient(
if "wshost" in settings:
ws_url = "ws://{}:{}".format(settings["wshost"], settings["wsport"])
swap_client.log.info(f"Starting ws server at {ws_url}.")
swap_client.log.info(f"Starting ws server at {ws_url}")
swap_client.ws_server = WebsocketServer(
host=settings["wshost"], port=settings["wsport"]