Log infos to stdout instead of stderr.

This commit is contained in:
Bastian Kleineidam 2012-05-11 19:32:00 +02:00
parent 6917ab17bb
commit b51aff6182
1 changed files with 2 additions and 2 deletions

View File

@ -329,8 +329,8 @@ def log_error (msg, out=sys.stderr):
print >> out, "patool error:", msg
def log_info (msg, out=sys.stderr):
"""Print info message to stderr (or any other given output)."""
def log_info (msg, out=sys.stdout):
"""Print info message to stdout (or any other given output)."""
print >> out, "patool:", msg