diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-30 19:29:00 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-30 19:34:39 +0530 |
commit | b0089e8992992d712d0d23aac167e7d86f5c26e8 (patch) | |
tree | 105a70acd672f6178ae76b083779bebac08389ec /yt_dlp/extractor/common.py | |
parent | a3ed14cbafd68d6bc4fd0fa756d7a73145872b10 (diff) |
[fancode] Add extractor (#316,#354)
Closes #269, #363
Authored by: rmsmachine
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index f3794cdcb..2e4f3559a 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -3530,7 +3530,7 @@ class InfoExtractor(object): return compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0]) @staticmethod - def _availability(is_private, needs_premium, needs_subscription, needs_auth, is_unlisted): + def _availability(is_private=None, needs_premium=None, needs_subscription=None, needs_auth=None, is_unlisted=None): all_known = all(map( lambda x: x is not None, (is_private, needs_premium, needs_subscription, needs_auth, is_unlisted))) |