From dc6e61dcbefe6e23d8f0374b73b80483b08c4a58 Mon Sep 17 00:00:00 2001 From: MOIS3Y Date: Fri, 7 Jun 2024 00:03:44 +0900 Subject: [PATCH] Fix: mgrctl vm6 cli help messages --- mgrctl/apps/vm6/commands.py | 2 +- mgrctl/mgrctl.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mgrctl/apps/vm6/commands.py b/mgrctl/apps/vm6/commands.py index c469c36..c7dba81 100644 --- a/mgrctl/apps/vm6/commands.py +++ b/mgrctl/apps/vm6/commands.py @@ -8,7 +8,7 @@ from mgrctl.apps.vm6 import __version__ @click.group( cls=LazyGroup, lazy_subcommands=INSTALLED_APPS['vm6'], - help='vm6 command for lazy example', + help='vm6 command for VM6manager management', ) @click.version_option( version=__version__, diff --git a/mgrctl/mgrctl.py b/mgrctl/mgrctl.py index afe8246..f53e4cb 100755 --- a/mgrctl/mgrctl.py +++ b/mgrctl/mgrctl.py @@ -17,7 +17,7 @@ from mgrctl.cli.lazy_group import LazyGroup 'vm6': 'mgrctl.apps.vm6.commands.cli', 'dci6': 'mgrctl.apps.dci6.commands.cli', }, - help='main CLI command for lazy example', + help='main CLI command for mgrctl app', ) @click.version_option( version=__version__,