[ITV] Fix UA capitalisation in 384f632
authordirkf <fieldhouse@gmx.net>
Tue, 23 May 2023 15:19:55 +0000 (16:19 +0100)
committerdirkf <fieldhouse@gmx.net>
Tue, 23 May 2023 15:50:25 +0000 (16:50 +0100)
youtube_dl/extractor/itv.py

index 7026139ea147dc6eaaf055fd499f142fc2066d36..c64af3be61fffb303f67b89b29309c46ee4a5c3d 100644 (file)
@@ -59,7 +59,7 @@ class ITVBaseIE(InfoExtractor):
 
     @staticmethod
     def _vanilla_ua_header():
-        return {'User-agent': 'Mozilla/5.0'}
+        return {'User-Agent': 'Mozilla/5.0'}
 
     def _download_webpage_handle(self, url, video_id, *args, **kwargs):
         # specialised to (a) use vanilla UA (b) detect geo-block
@@ -69,7 +69,7 @@ class ITVBaseIE(InfoExtractor):
                 'user_agent' not in params
                 and not any(re.match(r'(?i)user-agent\s*:', h)
                             for h in (params.get('headers') or []))
-                and 'User-agent' not in (kwargs.get('headers') or {})):
+                and 'User-Agent' not in (kwargs.get('headers') or {})):
 
             kwargs.setdefault('headers', {})
             kwargs['headers'] = self._vanilla_ua_header()