Skip to content

Commit

Permalink
bitchute uploader regex fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Zer0C001 authored May 12, 2019
1 parent 23c60d2 commit ff24f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/bitchute.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _real_extract(self, url):
webpage, default=None) or self._html_search_meta(
'twitter:image:src', webpage, 'thumbnail')
uploader = self._html_search_regex(
r'(?s)<div class=["\']channel-banner.*(?s)<p\b[^>]+\bclass=["\']name[^>]+>(.+?)</p>', webpage,
r'(?s)<div class=["\']channel-banner.*<p\b[^>]+\bclass=["\']name[^>]+>(.+?)</p>', webpage,
'uploader', fatal=False)

return {
Expand Down

0 comments on commit ff24f33

Please sign in to comment.