Fix email doc update I overlooked (thanks, Éric)

This commit is contained in:
R. David Murray 2010-11-20 21:28:24 +00:00
parent 650f147298
commit 8b9f0c5a10
1 changed files with 1 additions and 1 deletions

View File

@ -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()