diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-08-23 01:38:38 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 01:38:38 +0530 |
commit | 88acdbc2698169e22cdbf358e44765150434c69e (patch) | |
tree | a6cb42ac19943c4890b3ecd12b43e11808c9a0da /yt_dlp/options.py | |
parent | 9b5fa9ee7ce859d63fa10b840ffff7c99c393d7e (diff) |
[extractor] Better error message for DRM (#729)
Closes #636
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index ef821eb11..56ab001be 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -580,13 +580,11 @@ def parseOpts(overrideArguments=None): video_format.add_option( '--allow-unplayable-formats', action='store_true', dest='allow_unplayable_formats', default=False, - help=( - 'Allow unplayable formats to be listed and downloaded. ' - 'All video post-processing will also be turned off')) + help=optparse.SUPPRESS_HELP) video_format.add_option( '--no-allow-unplayable-formats', action='store_false', dest='allow_unplayable_formats', - help='Do not allow unplayable formats to be listed or downloaded (default)') + help=optparse.SUPPRESS_HELP) subtitles = optparse.OptionGroup(parser, 'Subtitle Options') subtitles.add_option( |