Browse Source

[snagfilms] Don't use '_' as a variable that is used

Jaime Marquínez Ferrándiz 10 years ago
parent
commit
28afa6e77a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/snagfilms.py

+ 1 - 1
youtube_dl/extractor/snagfilms.py

@@ -63,7 +63,7 @@ class SnagFilmsEmbedIE(InfoExtractor):
             type_ = source.get('type')
             type_ = source.get('type')
             ext = determine_ext(file_)
             ext = determine_ext(file_)
             format_id = source.get('label') or ext
             format_id = source.get('label') or ext
-            if all(_ == 'm3u8' for _ in (type_, ext)):
+            if all(v == 'm3u8' for v in (type_, ext)):
                 formats.extend(self._extract_m3u8_formats(
                 formats.extend(self._extract_m3u8_formats(
                     file_, video_id, 'mp4', m3u8_id='hls'))
                     file_, video_id, 'mp4', m3u8_id='hls'))
             else:
             else: