cpython (3.2): #11883: replace incorrect call to sendmail with correct call to send_message
April 30, 2011
9:21 p.m.
http://hg.python.org/cpython/rev/5c61c1d583fd changeset: 69725:5c61c1d583fd branch: 3.2 parent: 69719:591a09cf9e62 user: R David Murray <rdmurray@bitdance.com> date: Sat Apr 30 17:19:53 2011 -0400 summary: #11883: replace incorrect call to sendmail with correct call to send_message files: Doc/includes/email-simple.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Doc/includes/email-simple.py b/Doc/includes/email-simple.py --- 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() -- Repository URL: http://hg.python.org/cpython
5611
Age (days ago)
5611
Last active (days ago)
0 comments
1 participants
participants (1)
-
r.david.murray