projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4d2e76
)
[jove] Ensure comment count is int
author
Sergey M․
<dstftw@gmail.com>
Thu, 8 Jun 2017 17:29:20 +0000
(
00:29
+0700)
committer
Sergey M․
<dstftw@gmail.com>
Thu, 8 Jun 2017 17:29:20 +0000
(
00:29
+0700)
youtube_dl/extractor/jove.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/jove.py
b/youtube_dl/extractor/jove.py
index f9a034b78e41a8ec4b998f956c25c47715d6b1c7..27e0e37f6e56a4d972a8757482d7970f4d2ea114 100644
(file)
--- a/
youtube_dl/extractor/jove.py
+++ b/
youtube_dl/extractor/jove.py
@@
-65,9
+65,9
@@
class JoveIE(InfoExtractor):
webpage, 'description', fatal=False)
publish_date = unified_strdate(self._html_search_meta(
'citation_publication_date', webpage, 'publish date', fatal=False))
- comment_count = self._html_search_regex(
+ comment_count =
int(
self._html_search_regex(
r'<meta name="num_comments" content="(\d+) Comments?"',
- webpage, 'comment count', fatal=False)
+ webpage, 'comment count', fatal=False)
)
return {
'id': video_id,