[downloader/external] curl: Add the '--location' flag

curl doesn't follow redirections by default
This commit is contained in:
Jaime Marquínez Ferrándiz 2015-02-17 16:21:02 +01:00
parent 85729c51af
commit 163d966707
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class ExternalFD(FileDownloader):
class CurlFD(ExternalFD):
def _make_cmd(self, tmpfilename, info_dict):
cmd = [self.exe, '-o', tmpfilename]
cmd = [self.exe, '--location', '-o', tmpfilename]
for key, val in info_dict['http_headers'].items():
cmd += ['--header', '%s: %s' % (key, val)]
cmd += self._source_address('--interface')