Skip to content

Commit

Permalink
Adjust for Signify 0.7 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
m417z committed Sep 17, 2024
1 parent f5568fa commit fc87c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/upd03_parse_manifests.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def get_file_signing_times(pathname: Path):
signing_times = []
with open(pathname, 'rb') as f:
pefile = SignedPEFile(f)
for signed_data in pefile.signed_datas:
for signed_data in pefile.iter_signed_datas(ignore_parse_errors=False):
if signed_data.signer_info.countersigner is not None:
signing_time = signed_data.signer_info.countersigner.signing_time
signing_times.append(signing_time.isoformat().removesuffix('+00:00'))
Expand Down

0 comments on commit fc87c06

Please sign in to comment.