From e6162fe1bfedb353cf9e9e98f69985ef149bb431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Sch=C3=A4fer?= Date: Wed, 6 Mar 2024 15:54:18 +0100 Subject: [PATCH] Fixed docopt instance creation Invalid key for first parameter of docopt(). Change the code to use a standard parameter for the first parameter of the docopt() object --- kiwi_boxed_plugin/tasks/system_boxbuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwi_boxed_plugin/tasks/system_boxbuild.py b/kiwi_boxed_plugin/tasks/system_boxbuild.py index 0c9c2fc..c9bf722 100644 --- a/kiwi_boxed_plugin/tasks/system_boxbuild.py +++ b/kiwi_boxed_plugin/tasks/system_boxbuild.py @@ -215,7 +215,7 @@ def _validate_kiwi_build_command(self) -> List[str]: ) ) validated_build_command = docopt( - doc=kiwi.tasks.system_build.__doc__, + kiwi.tasks.system_build.__doc__, argv=kiwi_build_command ) # rebuild kiwi build command from validated docopt parser result