From 0ea3a9059b0253cdf0d2941289f1274aa1bde758 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Wed, 10 Feb 2016 16:33:54 -0500 Subject: [PATCH] Decode text to ascii when sending root msg --- master.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/master.cfg b/master.cfg index 5ad1079..90c6fbc 100644 --- a/master.cfg +++ b/master.cfg @@ -162,6 +162,7 @@ def SendRootMessageGDBTesters (branch, change): text += '\n'.join (change.comments.split ('\n')[1:]) chg_title = change.comments.split ('\n')[0] + text = text.decode ('ascii', 'ignore') mail = MIMEText (text) if branch == 'master': sbj = "[binutils-gdb] %s" % chg_title