From 5768fcd4293e10dc445c57e482b47cba5133a9b2 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 2 Dec 2019 19:34:19 +0200 Subject: [PATCH] Inform that PlatformIO Home server is already started in another process --- platformio/commands/home/command.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/platformio/commands/home/command.py b/platformio/commands/home/command.py index 1c1fff3f..5d231421 100644 --- a/platformio/commands/home/command.py +++ b/platformio/commands/home/command.py @@ -108,9 +108,12 @@ def cli(port, host, no_open, shutdown_timeout): ) ) click.echo("") - click.echo("Open PIO Home in your browser by this URL => %s" % home_url) + click.echo("Open PlatformIO Home in your browser by this URL => %s" % home_url) if already_started: + click.secho( + "PlatformIO Home server is already started in another process.", fg="yellow" + ) return click.echo("PIO Home has been started. Press Ctrl+C to shutdown.")