commit | 7461298c9cf7f89e312048013dd9a203b80f37fc | [log] [tgz] |
---|---|---|
author | R David Murray <rdmurray@bitdance.com> | Sat Apr 30 17:19:53 2011 -0400 |
committer | R David Murray <rdmurray@bitdance.com> | Sat Apr 30 17:19:53 2011 -0400 |
tree | 50cd7d8813f83c61a23fbda231c6561f7dc85d6a | |
parent | b751d6195f9cb6b2813c92f8562cc51a8667e5b8 [diff] |
#11883: replace incorrect call to sendmail with correct call to send_message
diff --git a/Doc/includes/email-simple.py b/Doc/includes/email-simple.py index b069ab0..fdf6f82 100644 --- a/Doc/includes/email-simple.py +++ b/Doc/includes/email-simple.py
@@ -19,5 +19,5 @@ # Send the message via our own SMTP server. s = smtplib.SMTP() -s.sendmail(msg) +s.send_message(msg) s.quit()