summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 1ec42717ff..d168cdff6b 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -409,7 +409,11 @@ def try_mirrors(d, origud, mirrors, check = False):
409 mirrors is the list of mirrors we're going to try 409 mirrors is the list of mirrors we're going to try
410 """ 410 """
411 ld = d.createCopy() 411 ld = d.createCopy()
412 for (find, replace) in mirrors: 412 for line in mirrors:
413 try:
414 (find, replace) = line
415 except ValueError:
416 continue
413 newuri = uri_replace(origud, find, replace, ld) 417 newuri = uri_replace(origud, find, replace, ld)
414 if newuri == origud.url: 418 if newuri == origud.url:
415 continue 419 continue