aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/dailymotion.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-02-22 21:49:30 +0700
committerSergey M․ <dstftw@gmail.com>2017-02-22 21:49:30 +0700
commit527ef85fe9bc65ed676ab855ee386c7cce8716ee (patch)
treeea31cc395d65b6fe5b3f6b6061c6cd368676e42e /youtube_dl/extractor/dailymotion.py
parent58ad6995cd3974eb9cff64f3fa8d34ec68cb6a03 (diff)
downloadyoutube-dl-527ef85fe9bc65ed676ab855ee386c7cce8716ee.tar.xz
[dailymotion] Make comment count optional (closes #12209)
Not served anymore
Diffstat (limited to 'youtube_dl/extractor/dailymotion.py')
-rw-r--r--youtube_dl/extractor/dailymotion.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py
index 31bf5faf6..b312401dc 100644
--- a/youtube_dl/extractor/dailymotion.py
+++ b/youtube_dl/extractor/dailymotion.py
@@ -66,7 +66,6 @@ class DailymotionIE(DailymotionBaseInfoExtractor):
'uploader_id': 'xijv66',
'age_limit': 0,
'view_count': int,
- 'comment_count': int,
}
},
# Vevo video
@@ -140,7 +139,7 @@ class DailymotionIE(DailymotionBaseInfoExtractor):
view_count = str_to_int(view_count_str)
comment_count = int_or_none(self._search_regex(
r'<meta[^>]+itemprop="interactionCount"[^>]+content="UserComments:(\d+)"',
- webpage, 'comment count', fatal=False))
+ webpage, 'comment count', default=None))
player_v5 = self._search_regex(
[r'buildPlayer\(({.+?})\);\n', # See https://github.com/rg3/youtube-dl/issues/7826