commit | 8b9f0c5a10244fe3b7225c89f24c179e4a0a0394 | [log] [tgz] |
---|---|---|
author | R. David Murray <rdmurray@bitdance.com> | Sat Nov 20 21:28:24 2010 +0000 |
committer | R. David Murray <rdmurray@bitdance.com> | Sat Nov 20 21:28:24 2010 +0000 |
tree | e1fe7a7bcbe36563fd981544d79fa674d64d1fd6 | |
parent | 650f147298873f2d7db046dbdfbb76c749c31d22 [diff] [blame] |
Fix email doc update I overlooked (thanks, Éric)
diff --git a/Doc/includes/email-mime.py b/Doc/includes/email-mime.py index 8ddd486..ec7e371 100644 --- a/Doc/includes/email-mime.py +++ b/Doc/includes/email-mime.py
@@ -27,5 +27,5 @@ # Send the email via our own SMTP server. s = smtplib.SMTP() -s.sendmail(msg) +s.send_message(msg) s.quit()