From a4cdd92448450839c307b4a04f85a3702bfa4d9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Tue, 8 Jul 2014 11:16:03 +0200 Subject: [PATCH] Always print command output when --verbose --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index ce3acc12..f21a0e71 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1666,7 +1666,7 @@ def FDroidPopen(commands, cwd=None, shell=False, output=True): while not stdout_reader.eof(): while not stdout_queue.empty(): line = stdout_queue.get() - if output and options.verbose: + if output or options.verbose: # Output directly to console sys.stderr.write(line) sys.stderr.flush() -- 2.30.2