Skip to content

Commit

Permalink
Add missing newline.
Browse files Browse the repository at this point in the history
  • Loading branch information
fossilet committed May 4, 2014
1 parent b36ade7 commit b929acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exception_notifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def _send_email(sender, receivers, subject, body, mail_server):
s = smtplib.SMTP(mail_server)
s.sendmail(msg['From'], receivers, msg.as_string())
# Print to stderr to facilitate doctest.
sys.stderr.write("'%s' sent to %s" % (subject, ','.join(receivers)))
sys.stderr.write("'%s' sent to %s\n" % (subject, ','.join(receivers)))
s.quit()


Expand Down

0 comments on commit b929acc

Please sign in to comment.