diff --git a/yt_dlp/extractor/fptplay.py b/yt_dlp/extractor/fptplay.py index 985d7b0e5..367771028 100644 --- a/yt_dlp/extractor/fptplay.py +++ b/yt_dlp/extractor/fptplay.py @@ -44,7 +44,7 @@ def _real_extract(self, url): contentId = self._match_id(url) # Need valid cookie with Bearer token, else it won't work - token = self._get_cookies(url).get("token") + token = self._get_cookies(url).get('token') res = self._download_json(self.get_api_with_st_token(contentId), contentId, expected_status=406)