From 1148f95d7d034a86839e5fc5c0059afe6f1c1b01 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 12 Oct 2007 05:41:12 +0000 Subject: Use writemsg() to send exception string to stderr. svn path=/main/trunk/; revision=8058 --- pym/portage/elog/mod_mail_summary.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3-1-g7c22