about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-03-06 17:01:05 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-03-06 17:01:05 +0800
commit0f56a4b44366234dafbd4b56559c610d6a0d5b4c (patch)
treeb519f38b1cf7d117b27ac7de109c3335be387d22
parent1b5284b13f1b579b2cbac5ce6ab9faa5b95800fb (diff)
downloadyoutube-dl-0f56a4b44366234dafbd4b56559c610d6a0d5b4c.tar.gz
youtube-dl-0f56a4b44366234dafbd4b56559c610d6a0d5b4c.tar.xz
youtube-dl-0f56a4b44366234dafbd4b56559c610d6a0d5b4c.zip
[vimeo] Don't pollute std_headers
Fixes #8778
-rw-r--r--youtube_dl/extractor/vimeo.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py
index 9f282a1da..560a80efd 100644
--- a/youtube_dl/extractor/vimeo.py
+++ b/youtube_dl/extractor/vimeo.py
@@ -277,9 +277,8 @@ class VimeoIE(VimeoBaseInfoExtractor):
 
     def _real_extract(self, url):
         url, data = unsmuggle_url(url, {})
-        headers = std_headers
+        headers = std_headers.copy()
         if 'http_headers' in data:
-            headers = headers.copy()
             headers.update(data['http_headers'])
         if 'Referer' not in headers:
             headers['Referer'] = url
@@ -294,7 +293,7 @@ class VimeoIE(VimeoBaseInfoExtractor):
             url = 'https://vimeo.com/' + video_id
 
         # Retrieve video webpage to extract further information
-        request = sanitized_Request(url, None, headers)
+        request = sanitized_Request(url, headers=headers)
         try:
             webpage = self._download_webpage(request, video_id)
         except ExtractorError as ee: