summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alot/commands/thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 354ddd3d..bb90a5d8 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -756,7 +756,7 @@ class PipeCommand(Command):
headertext = extract_headers(mail)
bodytext = extract_body(mail, field_key=self.field_key)
msgtext = '%s\n\n%s' % (headertext, bodytext)
- pipestrings.append(msgtext.encode('utf-8'))
+ pipestrings.append(msgtext)
if not self.separately:
pipestrings = [separator.join(pipestrings)]