[viki] Fix uploader extraction
This commit is contained in:
parent
d0efb9ec9a
commit
07e4035879
1 changed files with 1 additions and 1 deletions
|
@ -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