summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alot/crypto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/crypto.py b/alot/crypto.py
index d672b9a1..a457dd8e 100644
--- a/alot/crypto.py
+++ b/alot/crypto.py
@@ -29,8 +29,8 @@ def email_as_string(mail):
# Workaround for http://bugs.python.org/issue14983:
# Insert a newline before the outer mail boundary so that other mail
- # clients (like KMail, Claws-Mail, mutt, …) can verify the signature
- # when sending an email which contains attachments.
+ # clients can verify the signature when sending an email which contains
+ # attachments.
as_string = re.sub(r'--(\r\n)--' + boundary,
'--\g<1>\g<1>--' + boundary,
as_string, flags=re.MULTILINE)