Browse Source

[dailymotion] Fix view count regex

In some languages they can be in the format '123,456' instead of '123.456'
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
563e405411
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/dailymotion.py

+ 1 - 1
youtube_dl/extractor/dailymotion.py

@@ -148,7 +148,7 @@ class DailymotionIE(DailymotionBaseInfoExtractor, SubtitlesInfoExtractor):
             return
             return
 
 
         view_count = str_to_int(self._search_regex(
         view_count = str_to_int(self._search_regex(
-            r'video_views_value[^>]+>([\d\.]+)<', webpage, u'view count'))
+            r'video_views_value[^>]+>([\d\.,]+)<', webpage, u'view count'))
 
 
         return {
         return {
             'id':       video_id,
             'id':       video_id,