aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-07-21 20:50:02 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-07-21 20:50:02 +0200
commit28afa6e77a8fb95541ae9bead0ec0e57958cbfc5 (patch)
tree3c17d9ad605914312f418e1e6ad963ff96ece12b
parent496ce6b3493757e806d857363955a2289410a4e5 (diff)
downloadyoutube-dl-28afa6e77a8fb95541ae9bead0ec0e57958cbfc5.tar.xz
[snagfilms] Don't use '_' as a variable that is used
-rw-r--r--youtube_dl/extractor/snagfilms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/snagfilms.py b/youtube_dl/extractor/snagfilms.py
index 0e820d250..6977afb27 100644
--- a/youtube_dl/extractor/snagfilms.py
+++ b/youtube_dl/extractor/snagfilms.py
@@ -63,7 +63,7 @@ class SnagFilmsEmbedIE(InfoExtractor):
type_ = source.get('type')
ext = determine_ext(file_)
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(
file_, video_id, 'mp4', m3u8_id='hls'))
else: