Skip to content

Commit

Permalink
fix(tar): fix verbosity in checksum checker in tar handler
Browse files Browse the repository at this point in the history
The logger debug was being shown at every level of verbosity. The underscore fixes this.
  • Loading branch information
Antoine Pecoraro committed Aug 21, 2024
1 parent 7311f1c commit b49bb96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unblob/handlers/archive/tar.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def signed_sum(octets) -> int:
"Invalid checksum format",
actual_last_2_bytes=header.chksum[6:8],
handler=self.NAME,
verbosity=3,
_verbosity=3,
)
return None
checksum = decode_int(header.chksum[:6], 8)
Expand Down

0 comments on commit b49bb96

Please sign in to comment.