mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Revert "Always print command output when --verbose"
This reverts commit a4cdd92448
.
This commit is contained in:
parent
fad659921f
commit
acbbc6a973
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue