summaryrefslogtreecommitdiff
path: root/alot/crypto.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/crypto.py')
-rw-r--r--alot/crypto.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/crypto.py b/alot/crypto.py
index f3dd6d11..6e3e8fa6 100644
--- a/alot/crypto.py
+++ b/alot/crypto.py
@@ -152,7 +152,8 @@ def detached_signature_for(plaintext_str, keys):
"""
ctx = gpg.core.Context(armor=True)
ctx.signers = keys
- (sigblob, sign_result) = ctx.sign(plaintext_str, mode=gpg.constants.SIG_MODE_DETACH)
+ (sigblob, sign_result) = ctx.sign(plaintext_str,
+ mode=gpg.constants.SIG_MODE_DETACH)
return sign_result.signatures, sigblob