diff options
| -rw-r--r-- | youtube_dl/downloader/hls.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index 40d854aa3..32852f333 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -24,6 +24,7 @@ class HlsFD(FileDownloader):                  break          else:              self.report_error(u'm3u8 download detected but ffmpeg or avconv could not be found. Please install one.') +            return False          cmd = [program] + args          retval = subprocess.call(cmd)  | 
