From 9618c0bc3616ab7c5d1e9d56d19c4d527c3635fc Mon Sep 17 00:00:00 2001 From: Pascal Roeleven Date: Tue, 7 Feb 2023 22:17:04 +0100 Subject: [PATCH] Add unused return object when extracting Fixes #34 --- avbroot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avbroot.py b/avbroot.py index 1906ed1..f4efe02 100644 --- a/avbroot.py +++ b/avbroot.py @@ -298,7 +298,7 @@ def extract_subcommand(args): with z.open(info, 'r') as f: _, manifest, blob_offset = ota.parse_payload(f) - images, _ = get_images(manifest) + images, _, _ = get_images(manifest) print_status('Extracting', ', '.join(images), 'from the payload') ota.extract_images(f, manifest, blob_offset, args.directory, images)