Skip to content

Commit 5dbb692

Browse files
committed
make: Fix non-fatal contrib download error.
1 parent f7497a9 commit 5dbb692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make/df-fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def _run(self, error):
108108
## create URL objects and keep active
109109
urls = []
110110
i = 0
111-
for arg in self.args:
111+
for arg in self.args[1:]:
112112
url = URL(arg, i)
113113
if url.active:
114114
urls.append(url)

0 commit comments

Comments
 (0)