aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-03-25 21:53:26 +0700
committerSergey M․ <dstftw@gmail.com>2014-03-25 21:53:26 +0700
commita59e40a1ea7e604e494f58006c92b58e7e3c953f (patch)
tree25a8e4a8793a0593ae1944fe6d96fceb1510bdc6
parentad0a75db6bad844ac47f174ab84d85a31e543734 (diff)
downloadyoutube-dl-a59e40a1ea7e604e494f58006c92b58e7e3c953f.tar.xz
Replace 'referer' with 'http_referer'
-rw-r--r--youtube_dl/downloader/http.py4
-rw-r--r--youtube_dl/extractor/auengine.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py
index 16a2dce3f..cc8b9c9a7 100644
--- a/youtube_dl/downloader/http.py
+++ b/youtube_dl/downloader/http.py
@@ -23,8 +23,8 @@ class HttpFD(FileDownloader):
headers = {'Youtubedl-no-compression': 'True'}
if 'user_agent' in info_dict:
headers['Youtubedl-user-agent'] = info_dict['user_agent']
- if 'referer' in info_dict:
- headers['Referer'] = info_dict['referer']
+ if 'http_referer' in info_dict:
+ headers['Referer'] = info_dict['http_referer']
basic_request = compat_urllib_request.Request(url, None, headers)
request = compat_urllib_request.Request(url, None, headers)
diff --git a/youtube_dl/extractor/auengine.py b/youtube_dl/extractor/auengine.py
index 926d733c5..20bf12550 100644
--- a/youtube_dl/extractor/auengine.py
+++ b/youtube_dl/extractor/auengine.py
@@ -51,5 +51,5 @@ class AUEngineIE(InfoExtractor):
'url': video_url,
'title': title,
'thumbnail': thumbnail,
- 'referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
+ 'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
}