diff options
-rw-r--r-- | make/df-fetch.py | 2 |
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) |