aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-26 11:51:48 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-26 11:51:48 +0200
commit33ac271ba723365ecb7e3f7cd9fd9d99d0f8615b (patch)
tree0cea3a9986a4afce40f65f6379f2c0d7a37e3758
parent0963f92f23552800b5897d9f5f43ba3670679bbf (diff)
downloadyoutube-dl-33ac271ba723365ecb7e3f7cd9fd9d99d0f8615b.tar.xz
[utils] Let request headers override standard headers
What was I thinking when writing this?
-rw-r--r--youtube_dl/utils.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 16bc7408a..4ebdf6a78 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -766,10 +766,9 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
return ret
def http_request(self, req):
- for h,v in std_headers.items():
- if h in req.headers:
- del req.headers[h]
- req.add_header(h, v)
+ for h, v in std_headers.items():
+ if h not in req.headers:
+ req.add_header(h, v)
if 'Youtubedl-no-compression' in req.headers:
if 'Accept-encoding' in req.headers:
del req.headers['Accept-encoding']