[utils] Clarify for redirecting STDIN in get_exe_version()

pull/8/head
Yen Chi Hsuan 2016-10-22 13:04:05 +08:00
rodzic 00ca755231
commit b64d04c119
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 3FDDD575826C5C30
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -1818,6 +1818,9 @@ def get_exe_version(exe, args=['--version'],
""" Returns the version of the specified executable,
or False if the executable is not present """
try:
# STDIN should be redirected too. On UNIX-like systems, ffmpeg triggers
# SIGTTOU if youtube-dl is run in the background.
# See https://github.com/rg3/youtube-dl/issues/955#issuecomment-209789656
out, _ = subprocess.Popen(
[encodeArgument(exe)] + args,
stdin=subprocess.PIPE,