Mercurial > p > roundup > code
diff roundup/roundupdb.py @ 4114:da682f38bad3
bug introduced in the migration to the email package (issue 2550531)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 17 Mar 2009 22:56:38 +0000 |
| parents | 4b0ddce43d08 |
| children | d5cd6f440396 |
line wrap: on
line diff
--- a/roundup/roundupdb.py Mon Mar 16 18:04:44 2009 +0000 +++ b/roundup/roundupdb.py Tue Mar 17 22:56:38 2009 +0000 @@ -499,9 +499,9 @@ encode_quopri(message) if first: - mailer.smtp_send(sendto + bcc_sendto, message) + mailer.smtp_send(sendto + bcc_sendto, str(message)) else: - mailer.smtp_send(sendto, message) + mailer.smtp_send(sendto, str(message)) first = False def email_signature(self, nodeid, msgid):
