diff --git a/urartu/VERSION b/urartu/VERSION index 5ad8f21..e6f474a 100644 --- a/urartu/VERSION +++ b/urartu/VERSION @@ -1 +1 @@ -2.0.14 \ No newline at end of file +2.0.15 \ No newline at end of file diff --git a/urartu/commands/__init__.py b/urartu/commands/__init__.py index b6258d0..860fa00 100644 --- a/urartu/commands/__init__.py +++ b/urartu/commands/__init__.py @@ -3,9 +3,9 @@ from .command import Command -from .launch import Launch from .register import Register from .unregister import Unregister +from .launch import Launch def parse_args() -> Tuple[argparse.ArgumentParser, argparse.Namespace]: diff --git a/urartu/commands/launch.py b/urartu/commands/launch.py index 6a2f62f..3567f35 100644 --- a/urartu/commands/launch.py +++ b/urartu/commands/launch.py @@ -30,10 +30,11 @@ class Launch(Command): def add_subparser(self, parser: argparse._SubParsersAction) -> argparse.ArgumentParser: description = """urartu: launcher""" + available_modules = ", ".join(Registry.load_file_content().keys()) subparser = parser.add_parser( self.name, description=description, - help="Launch an action from a given module", + help=f"Launch an action from a given module: {available_modules}", ) subparser.add_argument("--name", type=str, help="name of the project/module")