diff options
-rw-r--r-- | pym/portage/output.py | 4 |
1 files changed, 2 insertions, 2 deletions
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") |