diff options
author | rzhxeo <rzhxeot7z81b4700@mailcatch.com> | 2013-10-27 12:48:09 +0100 |
---|---|---|
committer | rzhxeo <rzhxeot7z81b4700@mailcatch.com> | 2013-10-27 12:48:09 +0100 |
commit | 5da054958151263040f2a53cf554b0084e79f6fa (patch) | |
tree | 722c273a822d9202bf444cb64d390db173163f04 | |
parent | 5b11143d05c6d38cf1df94561c2a515c9150b2e1 (diff) |
[KeezMoviesIE] Correct return value for embedded videos
-rw-r--r-- | youtube_dl/extractor/keezmovies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/keezmovies.py b/youtube_dl/extractor/keezmovies.py index 937caf664..23d5209d9 100644 --- a/youtube_dl/extractor/keezmovies.py +++ b/youtube_dl/extractor/keezmovies.py @@ -36,7 +36,7 @@ class KeezMoviesIE(InfoExtractor): mobj = re.search(r'href="([^"]+)"></iframe>', webpage) if mobj: embedded_url = mobj.group(1) - return self.playlist_result([self.url_result(embedded_url)], playlist_id=video_id) + return self.url_result(embedded_url) video_title = self._html_search_regex(r'<h1 [^>]*>([^<]+)', webpage, u'title') video_url = compat_urllib_parse.unquote(self._html_search_regex(r'video_url=(.+?)&', webpage, u'video_url')) |