Skip to content

Commit

Permalink
fix compression issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Dax Harris committed Mar 25, 2024
1 parent 9fdbad6 commit 34f15ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpyg/operators/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def encrypt(
)
cmd = (
"gpg {compress} --batch --encrypt {recipients} {armored} --output -".format(
compress="-z 0" if compress else "",
compress="-z 0" if not compress else "",
recipients=parsed_recipients,
armored="--armor" if format == "ascii" else "",
)
Expand Down

0 comments on commit 34f15ed

Please sign in to comment.