mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-05 18:38:09 +01:00
run: remove trailing period on webgui url
This commit is contained in:
@@ -625,7 +625,7 @@ def runClient(
|
|||||||
swap_client.start()
|
swap_client.start()
|
||||||
if "htmlhost" in settings:
|
if "htmlhost" in settings:
|
||||||
swap_client.log.info(
|
swap_client.log.info(
|
||||||
"Starting http server at http://%s:%d."
|
"Starting http server at http://%s:%d"
|
||||||
% (settings["htmlhost"], settings["htmlport"])
|
% (settings["htmlhost"], settings["htmlport"])
|
||||||
)
|
)
|
||||||
allow_cors = (
|
allow_cors = (
|
||||||
@@ -644,7 +644,7 @@ def runClient(
|
|||||||
|
|
||||||
if "wshost" in settings:
|
if "wshost" in settings:
|
||||||
ws_url = "ws://{}:{}".format(settings["wshost"], settings["wsport"])
|
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(
|
swap_client.ws_server = WebsocketServer(
|
||||||
host=settings["wshost"], port=settings["wsport"]
|
host=settings["wshost"], port=settings["wsport"]
|
||||||
|
|||||||
Reference in New Issue
Block a user