Browse Source

[viki] Fix uploader extraction

Philipp Hagemeister 11 years ago
parent
commit
07e4035879
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/viki.py

+ 1 - 1
youtube_dl/extractor/viki.py

@@ -39,7 +39,7 @@ class VikiIE(SubtitlesInfoExtractor):
         if uploader_m is None:
         if uploader_m is None:
             uploader = None
             uploader = None
         else:
         else:
-            uploader = uploader.group(1).strip()
+            uploader = uploader_m.group(1).strip()
 
 
         rating_str = self._html_search_regex(
         rating_str = self._html_search_regex(
             r'<strong>Rating: </strong>\s*([^<]*)<', webpage,
             r'<strong>Rating: </strong>\s*([^<]*)<', webpage,