summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-11-16 00:30:33 +0000
committerZac Medico <zmedico@gentoo.org>2009-11-16 00:30:33 +0000
commit47fcea9e8280bd3d67569acb858936230415d797 (patch)
treeee163abe8184cda8cff5527f25aeacf4faeb24b2
parent90f45c05a11a3421dd3c01f4304574499aebdb84 (diff)
downloadportage-47fcea9e8280bd3d67569acb858936230415d797.tar.gz
portage-47fcea9e8280bd3d67569acb858936230415d797.tar.bz2
portage-47fcea9e8280bd3d67569acb858936230415d797.zip
Convert MIMEText body to string before sending. (trunk r14808)
svn path=/main/branches/2.1.7/; revision=14831
-rw-r--r--pym/portage/mail.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/mail.py b/pym/portage/mail.py
index 96bb38e83..42ed43b83 100644
--- a/pym/portage/mail.py
+++ b/pym/portage/mail.py
@@ -133,7 +133,7 @@ def send_mail(mysettings, message):
myconn = smtplib.SMTP(mymailhost, mymailport)
if mymailuser != "" and mymailpasswd != "":
myconn.login(mymailuser, mymailpasswd)
- myconn.sendmail(myfrom, myrecipient, message)
+ myconn.sendmail(myfrom, myrecipient, message.as_string())
myconn.quit()
except smtplib.SMTPException as e:
raise portage.exception.PortageException(_("!!! An error occured while trying to send logmail:\n")+str(e))