Remove stdin from FDroidPopen

This commit is contained in:
Daniel Martí 2014-02-17 11:23:53 +01:00
parent 517ce3a274
commit aa4fec9ca1

View file

@ -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)