mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-08 19:08:40 +00:00
[viki] Fix uploader extraction
This commit is contained in:
parent
d0efb9ec9a
commit
07e4035879
|
@ -39,7 +39,7 @@ class VikiIE(SubtitlesInfoExtractor):
|
|||
if uploader_m is None:
|
||||
uploader = None
|
||||
else:
|
||||
uploader = uploader.group(1).strip()
|
||||
uploader = uploader_m.group(1).strip()
|
||||
|
||||
rating_str = self._html_search_regex(
|
||||
r'<strong>Rating: </strong>\s*([^<]*)<', webpage,
|
||||
|
|
Loading…
Reference in a new issue