Skip to content

Commit df09f2d

Browse files
committed
Bug fix
Signed-off-by: Prabhu Subramanian <[email protected]>
1 parent 4a0d173 commit df09f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blint/lib/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ def extract_ar(ar_file: str, to_dir: str | None = None) -> list[str]:
600600
with open(afile, "wb") as output:
601601
output.write(archive.open(entry, "rb").read())
602602
files_list.append(afile)
603-
except ArchiveError as e:
603+
except (ArchiveError, ValueError) as e:
604604
LOG.warning(f"Failed to extract {ar_file}: {e}")
605605
return files_list
606606

0 commit comments

Comments
 (0)