mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09: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 New Issue
Block a user