From b1750b080ed91685c03b27d26b09c7ae07758731 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 26 Sep 2008 01:48:20 +0000 Subject: Direct EOutput.eerror() and ewarn() output to stderr. svn path=/main/trunk/; revision=11554 --- pym/portage/output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/portage/output.py b/pym/portage/output.py index 35dba7f0d..defcb478b 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -503,7 +503,7 @@ class EOutput(object): @param msg: A very brief (shorter than one line) error message. @type msg: StringType """ - out = sys.stdout + out = sys.stderr if not self.quiet: if self.__last_e_cmd == "ebegin": out.write("\n") @@ -548,7 +548,7 @@ class EOutput(object): @param msg: A very brief (shorter than one line) warning message. @type msg: StringType """ - out = sys.stdout + out = sys.stderr if not self.quiet: if self.__last_e_cmd == "ebegin": out.write("\n") -- cgit v1.2.3-1-g7c22