Browse Source

[24video] Fix comment count extraction

totalwebcasting
Sergey M․ 8 years ago
parent
commit
bd6fb007de
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/twentyfourvideo.py

+ 1
- 1
youtube_dl/extractor/twentyfourvideo.py View File

@ -64,7 +64,7 @@ class TwentyFourVideoIE(InfoExtractor):
r'<span class="video-views">(\d+) просмотр',
webpage, 'view count', fatal=False))
comment_count = int_or_none(self._html_search_regex(
r'<div class="comments-title" id="comments-count">(\d+) комментари',
r'<a[^>]+href="#tab-comments"[^>]*>(\d+) комментари',
webpage, 'comment count', fatal=False))
# Sets some cookies


Loading…
Cancel
Save