projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8276b2
)
[indavideo:embed] Fix tags extraction (Closes #8738)
author
Sergey M․
<dstftw@gmail.com>
Thu, 3 Mar 2016 18:09:40 +0000
(
00:09
+0600)
committer
Sergey M․
<dstftw@gmail.com>
Thu, 3 Mar 2016 18:09:40 +0000
(
00:09
+0600)
youtube_dl/extractor/indavideo.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/indavideo.py
b/youtube_dl/extractor/indavideo.py
index 12fb5e8e1dcb1e5dfba8057a1496edcbe0f61f82..9622f198aa6aaf99094a9b85c5a914d4f0c07d46 100644
(file)
--- a/
youtube_dl/extractor/indavideo.py
+++ b/
youtube_dl/extractor/indavideo.py
@@
-73,7
+73,7
@@
class IndavideoEmbedIE(InfoExtractor):
'url': self._proto_relative_url(thumbnail)
} for thumbnail in video.get('thumbnails', [])]
- tags = [tag['title'] for tag in video.get('tags'
, [])
]
+ tags = [tag['title'] for tag in video.get('tags'
) or []
]
return {
'id': video.get('id') or video_id,