about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-06 04:30:19 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-06 04:30:19 +0600
commitff059017c0650e9635bbbc0565a7ec5f27f16615 (patch)
tree54c0a6c51bd543cc6649df409b4c7cc7252f48cd
parentf22ba4bd60e9b4deeb1ca3e1f8162e607dc9648e (diff)
downloadyoutube-dl-ff059017c0650e9635bbbc0565a7ec5f27f16615.tar.gz
youtube-dl-ff059017c0650e9635bbbc0565a7ec5f27f16615.tar.xz
youtube-dl-ff059017c0650e9635bbbc0565a7ec5f27f16615.zip
[YoutubeDL] Fix typo in m3u8_native fixup
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 94e4ea432..72d7f0379 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1672,7 +1672,7 @@ class YoutubeDL(object):
                     else:
                         assert fixup_policy in ('ignore', 'never')
 
-                if info_dict.get('protocol') == 'm3u8_native' or info_dict.get('protocol') == 'm3u8' and self._downloader.params.get('hls_prefer_native', False):
+                if info_dict.get('protocol') == 'm3u8_native' or info_dict.get('protocol') == 'm3u8' and self.params.get('hls_prefer_native', False):
                     if fixup_policy == 'warn':
                         self.report_warning('%s: malformated aac bitstream.' % (
                             info_dict['id']))