From 25268a728dc3a53f95620b292d9ffe8dce612efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 21 Jun 2014 23:03:36 +0200 Subject: [PATCH] Don't output everything when using --verbose This is especially painful when using stuff like aapt to obtain data --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index edd1a6a2..5db9f540 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1597,7 +1597,7 @@ def FDroidPopen(commands, cwd=None, shell=False, output=False): while not stdout_reader.eof(): while not stdout_queue.empty(): line = stdout_queue.get() - if output or options.verbose: + if output: # Output directly to console sys.stdout.write(line) sys.stdout.flush()