From 7b0d1a7dcaecad39eb77d1f90f70253d8fda843f Mon Sep 17 00:00:00 2001 From: liangyongxiong Date: Wed, 10 Jun 2020 08:36:48 +0800 Subject: [PATCH] fix stop command hints --- mindinsight/scripts/stop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindinsight/scripts/stop.py b/mindinsight/scripts/stop.py index 60d7553..ca9fe49 100644 --- a/mindinsight/scripts/stop.py +++ b/mindinsight/scripts/stop.py @@ -96,7 +96,7 @@ class Command(BaseCommand): """ port, pid = args.port, args.pid if not pid: - msg = f'No mindinsight service found for port {port}' + msg = f'No mindinsight service started by current user found for port {port}' self.console.error(msg) sys.exit(1) -- GitLab