From: Zac Medico Date: Fri, 12 Oct 2007 05:41:12 +0000 (-0000) Subject: Use writemsg() to send exception string to stderr. X-Git-Tag: v2.2_pre1~641 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1148f95d7d034a86839e5fc5c0059afe6f1c1b01;p=portage.git Use writemsg() to send exception string to stderr. svn path=/main/trunk/; revision=8058 --- diff --git a/pym/portage/elog/mod_mail_summary.py b/pym/portage/elog/mod_mail_summary.py index d0b2577ae..5b554a7bf 100644 --- a/pym/portage/elog/mod_mail_summary.py +++ b/pym/portage/elog/mod_mail_summary.py @@ -5,6 +5,7 @@ import portage.mail, socket, os, time from portage.exception import PortageException +from portage.util import writemsg from email.MIMEText import MIMEText as TextMessage _items = {} @@ -52,6 +53,6 @@ def _finalize(mysettings, items): try: portage.mail.send_mail(mysettings, mymessage) except PortageException, e: - print str(e) + writemsg("%s\n" % str(e), noiselevel=-1) return