summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2019-04-13 14:57:26 -0400
committerBradley Sepos <[email protected]>2019-04-13 14:57:26 -0400
commit5dbb6923ce7da24c2615de285ce484abb33d2f7c (patch)
tree5cc038b9560810cdecedc56ed6d2eca33a61945f /make
parentf7497a95e8935ca1b9792d787e55207e6c248727 (diff)
make: Fix non-fatal contrib download error.
Diffstat (limited to 'make')
-rw-r--r--make/df-fetch.py2
1 files changed, 1 insertions, 1 deletions
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)