mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Don't directly print FDroidPopen output unless verbose
This commit is contained in:
parent
8249324a7b
commit
9d96ad3478
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
if output and options.verbose:
|
||||
# Output directly to console
|
||||
sys.stdout.write(line)
|
||||
sys.stdout.flush()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue