summary refs log tree commit diff
diff options
context:
space:
mode:
authorrzhxeo <rzhxeot7z81b4700@mailcatch.com>2013-10-27 12:48:09 +0100
committerrzhxeo <rzhxeot7z81b4700@mailcatch.com>2013-10-27 12:48:09 +0100
commit5da054958151263040f2a53cf554b0084e79f6fa (patch)
tree722c273a822d9202bf444cb64d390db173163f04
parent5b11143d05c6d38cf1df94561c2a515c9150b2e1 (diff)
downloadyoutube-dl-5da054958151263040f2a53cf554b0084e79f6fa.tar.gz
youtube-dl-5da054958151263040f2a53cf554b0084e79f6fa.tar.xz
youtube-dl-5da054958151263040f2a53cf554b0084e79f6fa.zip
[KeezMoviesIE] Correct return value for embedded videos
-rw-r--r--youtube_dl/extractor/keezmovies.py2
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=(.+?)&amp;', webpage, u'video_url'))