Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzohrab committed Nov 1, 2024
1 parent c30c86c commit 21e3520
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lute/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def _start(args):
_print(textwrap.dedent(close_msg))

host_ip = "127.0.0.1" if args.local else "0.0.0.0"
msg = f"""Lute v{__version__} is running on {host_ip}:{args.port}. Open a web browser, and go to:
ip_port = f"{host_ip}:{args.port}"
msg = f"""Lute v{__version__} is running on {ip_port}. Open a web browser and go to:
http://localhost:{args.port}
"""
Expand Down

0 comments on commit 21e3520

Please sign in to comment.