From: Bradley Sepos Date: Sat, 13 Apr 2019 18:57:26 +0000 (-0400) Subject: make: Fix non-fatal contrib download error. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5dbb6923ce7da24c2615de285ce484abb33d2f7c;p=handbrake make: Fix non-fatal contrib download error. --- diff --git a/make/df-fetch.py b/make/df-fetch.py index 9ee48d598..f27376735 100644 --- a/make/df-fetch.py +++ b/make/df-fetch.py @@ -108,7 +108,7 @@ class Tool(hb_distfile.Tool): ## create URL objects and keep active urls = [] i = 0 - for arg in self.args: + for arg in self.args[1:]: url = URL(arg, i) if url.active: urls.append(url)