mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-01-31 18:52:02 -05:00
Remove stdin from FDroidPopen
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user