From 1597a303f9925327824c4557dffc6a926c24b062 Mon Sep 17 00:00:00 2001 From: Overwatch Date: Sun, 8 Feb 2015 23:57:50 +0100 Subject: [PATCH] over.core.text.Output default output stream changed to stderr --- core/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/text.py b/core/text.py index 0132b5c..00cd64f 100644 --- a/core/text.py +++ b/core/text.py @@ -449,7 +449,7 @@ class Output: TODO use a generic format string ''' - def __init__(self, name, timestamp=True, colors=True, default_prefix=prefix.info, default_suffix='.\n', stream=sys.stdout): + def __init__(self, name, timestamp=True, colors=True, default_prefix=prefix.info, default_suffix='.\n', stream=sys.stderr): self.name = name self.timestamp = timestamp self.colors = colors