Always print command output when --verbose

This commit is contained in:
Daniel Martí 2014-07-08 11:16:03 +02:00
parent ff06694adc
commit a4cdd92448

View file

@ -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()