summaryrefslogtreecommitdiff
path: root/alot/crypto.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-07-24 19:47:15 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-07-24 19:47:15 +0100
commit483ef7efb36a23a2f73111a36b86cc68e93128fb (patch)
tree0a6bec16ee6b285bc44f8d050b5dc943e90c49be /alot/crypto.py
parent8daf385e057a82fc532a8b41b4d4b88e5e624b77 (diff)
doc: remove non-ascii char to hotfix manual build
cf issue #483
Diffstat (limited to 'alot/crypto.py')
-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)