Skip to content

Commit

Permalink
Merge pull request #20 from Kwaizer/fix-pr
Browse files Browse the repository at this point in the history
Fix previous PR
  • Loading branch information
anfimovdm authored Dec 10, 2024
2 parents 681428a + 54c1d07 commit 37272f7
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 37272f7

Please sign in to comment.