Fix missing return

This commit is contained in:
Alex Yatskov 2021-02-22 19:25:12 -08:00
parent 8b81267b0c
commit 421ca35c09

View File

@ -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):