| Index: tools/testrunner/local/utils.py
|
| diff --git a/tools/testrunner/local/utils.py b/tools/testrunner/local/utils.py
|
| index 2842b13913e638190f7fd267fb7d9c851097fef0..cb6c350e4e03543b7daa3f66f2b1b113356c5841 100644
|
| --- a/tools/testrunner/local/utils.py
|
| +++ b/tools/testrunner/local/utils.py
|
| @@ -126,7 +126,7 @@ def URLRetrieve(source, destination):
|
| try:
|
| # In python 2.7.6 on windows, urlopen has a problem with redirects.
|
| # Try using curl instead. Note, this is fixed in 2.7.8.
|
| - subprocess.check_call(["curl", source, '-L', '-o', destination])
|
| + subprocess.check_call(["curl", source, '-k', '-L', '-o', destination])
|
| return
|
| except:
|
| # If there's no curl, fall back to urlopen.
|
|
|