Skip to content

Commit

Permalink
verify: Fix path variable.
Browse files Browse the repository at this point in the history
ref: #115
  • Loading branch information
mtwebster committed Mar 28, 2023
1 parent da256a6 commit 60c77b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def verify(self):
print("Importing", fingerprint)
# re-verify
self.gpg.recv_keys('hkp://keyserver.ubuntu.com', fingerprint)
verified = self.gpg.verify_file(open(PATH_GPG, "rb"), sums_path)
verified = self.gpg.verify_file(open(PATH_GPG, "rb"), PATH_SUMS)
# Remove it from the keyring
print("Deleting", fingerprint)
self.gpg.delete_keys(fingerprint)
Expand Down

0 comments on commit 60c77b1

Please sign in to comment.