From 0e41a327c035d5e2f6673b1b197bab7850ca1727 Mon Sep 17 00:00:00 2001 From: James Bunton Date: Wed, 20 Aug 2014 02:11:56 +1000 Subject: [PATCH] iview: return correct download status --- iview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iview.py b/iview.py index cfe5ec4..a2d6cbc 100644 --- a/iview.py +++ b/iview.py @@ -44,7 +44,7 @@ class IviewEpisodeNode(Node): video_url = self.find_hls_url(info["playlist"]) token, token_hostname= self.get_auth_details() hack_url = lambda url: self.hack_url_auth_token(url, token, token_hostname) - download_hls(self.filename, video_url, hack_url) + return download_hls(self.filename, video_url, hack_url) class IviewIndexNode(Node): -- 2.39.2