mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
All logging goes to stderr, FDroidPopen should too
This commit is contained in:
parent
9d96ad3478
commit
17dc21b69b
1 changed files with 2 additions and 2 deletions
|
@ -1668,8 +1668,8 @@ def FDroidPopen(commands, cwd=None, shell=False, output=True):
|
|||
line = stdout_queue.get()
|
||||
if output and options.verbose:
|
||||
# Output directly to console
|
||||
sys.stdout.write(line)
|
||||
sys.stdout.flush()
|
||||
sys.stderr.write(line)
|
||||
sys.stderr.flush()
|
||||
result.output += line
|
||||
|
||||
time.sleep(0.1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue