summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--b4/ty.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/b4/ty.py b/b4/ty.py
index cbee06a..83209eb 100644
--- a/b4/ty.py
+++ b/b4/ty.py
@@ -427,8 +427,9 @@ def send_messages(listing, gitdir, outdir, branch, since='1.week'):
outfile = os.path.join(outdir, '%s.thanks' % slug)
logger.info(' Writing: %s', outfile)
msg.set_charset('utf-8')
- with open(outfile, 'wb') as fh:
- fh.write(msg.as_bytes())
+ msg.replace_header('Content-Transfer-Encoding', '8bit')
+ with open(outfile, 'w') as fh:
+ fh.write(msg.as_string(policy=b4.emlpolicy))
logger.debug('Cleaning up: %s', jsondata['trackfile'])
fullpath = os.path.join(datadir, jsondata['trackfile'])
os.rename(fullpath, '%s.sent' % fullpath)