[jove] Ensure comment count is int
authorSergey M․ <dstftw@gmail.com>
Thu, 8 Jun 2017 17:29:20 +0000 (00:29 +0700)
committerSergey M․ <dstftw@gmail.com>
Thu, 8 Jun 2017 17:29:20 +0000 (00:29 +0700)
youtube_dl/extractor/jove.py

index f9a034b78e41a8ec4b998f956c25c47715d6b1c7..27e0e37f6e56a4d972a8757482d7970f4d2ea114 100644 (file)
@@ -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,