From 799c23bb5621522f7da67c101bdb1ea2ee120f7d Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 11 Jun 2025 16:51:15 +0200 Subject: [PATCH] doc(cli/templates): improve help description --- pkgs/clan-cli/clan_cli/machines/create.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/clan-cli/clan_cli/machines/create.py b/pkgs/clan-cli/clan_cli/machines/create.py index 118565d3f..481938fa7 100644 --- a/pkgs/clan-cli/clan_cli/machines/create.py +++ b/pkgs/clan-cli/clan_cli/machines/create.py @@ -147,8 +147,8 @@ def register_create_parser(parser: argparse.ArgumentParser) -> None: "-t", "--template", type=str, - help="""Reference to the template to use for the machine. In the format '#template_name' Where is a flake reference (e.g. github:org/repo) or a local path (e.g. '.' ). - Omitting '#' will use the pre-provided templates (e.g. just 'new-machine' (default) ). + help="""Reference to the template to use for the machine. default="new-machine". In the format '#template_name' Where is a flake reference (e.g. github:org/repo) or a local path (e.g. '.' ). + Omitting '#' will use the builtin templates (e.g. just 'new-machine' from clan-core ). """, default="new-machine", )