diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-27 04:36:23 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-27 04:43:43 +0530 |
commit | 8a82af3511b4379af0d239dbd01c672c17a2c46a (patch) | |
tree | 6ab4c4cf233a5338c0be101919e0c64108ac8cc3 /yt_dlp/extractor/curiositystream.py | |
parent | 8246f8402b77dfb5c905e97b04b09f89632575d9 (diff) | |
download | hypervideo-pre-8a82af3511b4379af0d239dbd01c672c17a2c46a.tar.lz hypervideo-pre-8a82af3511b4379af0d239dbd01c672c17a2c46a.tar.xz hypervideo-pre-8a82af3511b4379af0d239dbd01c672c17a2c46a.zip |
[cleanup] Misc fixes and cleanup
Closes #3780, Closes #3853, Closes #3850
Diffstat (limited to 'yt_dlp/extractor/curiositystream.py')
-rw-r--r-- | yt_dlp/extractor/curiositystream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/curiositystream.py b/yt_dlp/extractor/curiositystream.py index e71b05289..be4e53e44 100644 --- a/yt_dlp/extractor/curiositystream.py +++ b/yt_dlp/extractor/curiositystream.py @@ -27,7 +27,7 @@ class CuriosityStreamBaseIE(InfoExtractor): auth_cookie = self._get_cookies('https://curiositystream.com').get('auth_token') if auth_cookie: self.write_debug('Obtained auth_token cookie') - self._auth_token = cookie.value + self._auth_token = auth_cookie.value if self._auth_token: headers['X-Auth-Token'] = self._auth_token result = self._download_json( |