From 3e0b8103d26d4430de391635e699c0035bc39d36 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Aug 22 2024 16:44:50 +0000 Subject: Fix a typo in the kiwi image type attribute override patch This colon was duplicated, which is syntactically invalid and prevents the file from loading at all. Signed-off-by: Adam Williamson --- diff --git a/plugins/builder/kiwi.py b/plugins/builder/kiwi.py index 1b4a948..369071e 100644 --- a/plugins/builder/kiwi.py +++ b/plugins/builder/kiwi.py @@ -389,7 +389,7 @@ class KiwiCreateImageTask(BaseBuildTask): '--description', os.path.join(os.path.basename(scmsrcdir), base_path), '--target-dir', target_dir, ]) - for typeattr in self.opts.get('type_attr', []):: + for typeattr in self.opts.get('type_attr', []): cmd.extend(['--set-type-attr', typeattr]) rv = broot.mock(['--cwd', broot.tmpdir(within=True), '--chroot', '--'] + cmd) if rv: