diff --git a/fdroidserver/common.py b/fdroidserver/common.py index ff1f0583..9407da29 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1674,7 +1674,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 or options.verbose: + if output and options.verbose: # Output directly to console sys.stderr.write(line) sys.stderr.flush()