Skip to content

Commit

Permalink
Fix previous PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwaizer committed Dec 10, 2024
1 parent 681428a commit 54c1d07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sign/pgp/pgp.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async def sign(

hash_before = hash_file(
fd.name,
hasher=get_hasher('sha256'),
hasher=get_hasher(),
)

# signing tmp file with gpg binary
Expand All @@ -81,7 +81,7 @@ async def sign(
)
hash_after = hash_file(
fd.name,
hasher=get_hasher('sha256'),
hasher=get_hasher(),
)

# it would be nice if we could know the platform too
Expand Down

0 comments on commit 54c1d07

Please sign in to comment.