mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Remove stdin from FDroidPopen
This commit is contained in:
parent
517ce3a274
commit
aa4fec9ca1
1 changed files with 1 additions and 2 deletions
|
@ -1347,8 +1347,7 @@ def FDroidPopen(commands, cwd=None, output=True):
|
|||
|
||||
result = PopenResult()
|
||||
p = subprocess.Popen(commands, cwd=cwd,
|
||||
stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
|
||||
stdin=subprocess.PIPE)
|
||||
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||
|
||||
stdout_queue = Queue.Queue()
|
||||
stdout_reader = AsynchronousFileReader(p.stdout, stdout_queue)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue