From 421ca35c09c0202de6d1461aa803917ab6c74563 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Mon, 22 Feb 2021 19:25:12 -0800 Subject: [PATCH] Fix missing return --- plugin/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/util.py b/plugin/util.py index 3d65b1e..a044814 100644 --- a/plugin/util.py +++ b/plugin/util.py @@ -38,7 +38,7 @@ def download(url): if resp.status_code != 200: raise Exception('{} download failed with return code {}'.format(url, resp.status_code)) - client.streamContent(resp) + return client.streamContent(resp) def api(*versions):