From d48e42250618bbeb2b87a47f8277372b094639fa Mon Sep 17 00:00:00 2001 From: William Douglas Date: Thu, 1 Aug 2024 15:59:28 -0700 Subject: [PATCH] Fix type mismatch current_patch is modified in the called as an array so make sure it is created as one. Signed-off-by: William Douglas --- autospec/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autospec/util.py b/autospec/util.py index 8c7c5cb4..b425c5d2 100644 --- a/autospec/util.py +++ b/autospec/util.py @@ -112,7 +112,7 @@ def _process_build_log(filename): lines = lfile.readlines() prev_line = '' - current_patch = '' + current_patch = [''] reported_patches = {} error = False for line in lines: