1
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-07-12 22:20:49 +02:00

Don't use 2.7+ check_output

This commit is contained in:
Philipp Hagemeister 2012-10-19 23:28:37 +02:00
parent 9248cb0549
commit 073522bc6c

View File

@ -73,7 +73,7 @@ class FFmpegExtractAudioPP(PostProcessor):
def detect_executables():
def executable(exe):
try:
subprocess.check_output([exe, '-version'])
subprocess.Popen([exe, '-version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
except OSError:
return False
return exe