From 23e41f4a94c5a4d03257af82bd0496981086435e Mon Sep 17 00:00:00 2001 From: Stephen Crowe <6042774+crowecawcaw@users.noreply.github.com> Date: Tue, 10 Feb 2026 16:28:41 -0800 Subject: [PATCH] docs: clarify help text for --extensions Signed-off-by: Stephen Crowe <6042774+crowecawcaw@users.noreply.github.com> --- src/openjd/cli/_common/_extensions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openjd/cli/_common/_extensions.py b/src/openjd/cli/_common/_extensions.py index 3732d3b..b414a11 100644 --- a/src/openjd/cli/_common/_extensions.py +++ b/src/openjd/cli/_common/_extensions.py @@ -10,7 +10,7 @@ def add_extensions_argument(run_parser: ArgumentParser): run_parser.add_argument( "--extensions", - help=f"A comma-separated list of Open Job Description extension names to enable. Defaults to all that are implemented: {','.join(SUPPORTED_EXTENSIONS)}", + help=f"A comma-separated list of Open Job Description extension names that the CLI will accept from job templates. Templates declare which extensions they use. Defaults to all that are implemented: {','.join(SUPPORTED_EXTENSIONS)}", )