From: Sergey M․ Date: Mon, 17 Sep 2018 15:15:27 +0000 (+0700) Subject: [adobepass] Don't pollute default headers dict X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=e504b0907082512d5252643d7fd8c5ca67225e3d;p=youtube-dl [adobepass] Don't pollute default headers dict --- diff --git a/youtube_dl/extractor/adobepass.py b/youtube_dl/extractor/adobepass.py index b83b51efb..1cf2dcbf3 100644 --- a/youtube_dl/extractor/adobepass.py +++ b/youtube_dl/extractor/adobepass.py @@ -1325,8 +1325,8 @@ class AdobePassIE(InfoExtractor): _DOWNLOADING_LOGIN_PAGE = 'Downloading Provider Login Page' def _download_webpage_handle(self, *args, **kwargs): - headers = kwargs.get('headers', {}) - headers.update(self.geo_verification_headers()) + headers = self.geo_verification_headers() + headers.update(kwargs.get('headers', {})) kwargs['headers'] = headers return super(AdobePassIE, self)._download_webpage_handle( *args, **compat_kwargs(kwargs))