summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorEmmanuel Beffara <manu@beffara.org>2016-10-20 16:36:43 +0200
committerEmmanuel Beffara <manu@beffara.org>2016-10-20 16:39:55 +0200
commit983c462c17e577aab6e4676f7ff3982e88e9b3eb (patch)
tree9b14b84211afce305379e45a6623807fc37117a4 /alot
parent1b4abe0b3c70457044c3ddaab7f023c415a3f889 (diff)
Removed incorrect backslash-t substitution in envelope.
Diffstat (limited to 'alot')
-rw-r--r--alot/db/envelope.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/alot/db/envelope.py b/alot/db/envelope.py
index 4abbdf7a..4541f93d 100644
--- a/alot/db/envelope.py
+++ b/alot/db/envelope.py
@@ -171,7 +171,6 @@ class Envelope(object):
# Build body text part. To properly sign/encrypt messages later on, we
# convert the text to its canonical format (as per RFC 2015).
canonical_format = self.body.encode('utf-8')
- canonical_format = canonical_format.replace('\\t', ' ' * 4)
textpart = MIMEText(canonical_format, 'plain', 'utf-8')
# wrap it in a multipart container if necessary