Skip to content

Commit

Permalink
Fixed docopt instance creation
Browse files Browse the repository at this point in the history
Invalid key for first parameter of docopt(). Change
the code to use a standard parameter for the first
parameter of the docopt() object
  • Loading branch information
schaefi committed Mar 6, 2024
1 parent 62020eb commit e6162fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kiwi_boxed_plugin/tasks/system_boxbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e6162fe

Please sign in to comment.