Skip to content

Commit

Permalink
fix(gpg): updated file encryption params to latest version of gpg
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherpickering committed Sep 14, 2022
1 parent 04de1f7 commit 9970fd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner/scripts/em_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ def save(self) -> Tuple[str, str, str]:
# encrypt file
with open(self.file_path, "rb") as my_file:
encrypt_status = gpg.encrypt_file(
file=my_file,
recipients=keychain.fingerprints,
my_file, # the file
keychain.fingerprints, # the recipients
output=self.file_path + ".gpg",
)

Expand Down

0 comments on commit 9970fd9

Please sign in to comment.