Skip to content

Commit

Permalink
server: use stdin=subprocess.PIPE
Browse files Browse the repository at this point in the history
  • Loading branch information
back-to committed Jan 16, 2021
1 parent f4995fc commit 00ef0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liveproxy/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def do_GET(self):
self._headers(200, 'video/unknown')
process = subprocess.Popen(arglist,
stderr=subprocess.PIPE,
stdin=None,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
shell=False,
)
Expand Down

0 comments on commit 00ef0af

Please sign in to comment.