From 17dc21b69b54de3498ec02d2d17336840b4ef8a0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Sat, 5 Jul 2014 14:10:26 +0200 Subject: [PATCH] All logging goes to stderr, FDroidPopen should too --- fdroidserver/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index f3806cf2..c568a908 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1668,8 +1668,8 @@ def FDroidPopen(commands, cwd=None, shell=False, output=True): line = stdout_queue.get() if output and options.verbose: # Output directly to console - sys.stdout.write(line) - sys.stdout.flush() + sys.stderr.write(line) + sys.stderr.flush() result.output += line time.sleep(0.1) -- 2.30.2