From: R. David Murray Date: Sat, 20 Nov 2010 21:28:24 +0000 (+0000) Subject: Fix email doc update I overlooked (thanks, Éric) X-Git-Tag: v3.2b1~282 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b9f0c5a10244fe3b7225c89f24c179e4a0a0394;p=python Fix email doc update I overlooked (thanks, Éric) --- diff --git a/Doc/includes/email-mime.py b/Doc/includes/email-mime.py index 8ddd4869e6..ec7e371d00 100644 --- a/Doc/includes/email-mime.py +++ b/Doc/includes/email-mime.py @@ -27,5 +27,5 @@ for file in pngfiles: # Send the email via our own SMTP server. s = smtplib.SMTP() -s.sendmail(msg) +s.send_message(msg) s.quit()