youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 07e40358799158e51453e2d2c493d265a495b9e0
parent d0efb9ec9a85662fa43f026339821513ac2f039c
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 25 Nov 2013 05:57:55 +0100

[viki] Fix uploader extraction

Diffstat:
Myoutube_dl/extractor/viki.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/viki.py b/youtube_dl/extractor/viki.py @@ -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,