diff options
author | pukkandan <pukkandan@gmail.com> | 2021-02-10 01:36:02 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-02-10 02:06:49 +0530 |
commit | 8d801631cf4f03b68c0989b51ed4da122230dcdf (patch) | |
tree | 668cf67f46ca4b1c4e02d39f9e30aa1120b610d8 /youtube_dlc/options.py | |
parent | ba9f36d7325eb3a3f736c3ec98b80ee2b572076c (diff) | |
download | hypervideo-pre-8d801631cf4f03b68c0989b51ed4da122230dcdf.tar.lz hypervideo-pre-8d801631cf4f03b68c0989b51ed4da122230dcdf.tar.xz hypervideo-pre-8d801631cf4f03b68c0989b51ed4da122230dcdf.zip |
[version] update
:ci skip all
Diffstat (limited to 'youtube_dlc/options.py')
-rw-r--r-- | youtube_dlc/options.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/youtube_dlc/options.py b/youtube_dlc/options.py index a7c870171..abbd1927d 100644 --- a/youtube_dlc/options.py +++ b/youtube_dlc/options.py @@ -153,7 +153,7 @@ def parseOpts(overrideArguments=None): general.add_option( '-U', '--update', action='store_true', dest='update_self', - help='[BROKEN] Update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)') + help='Update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)') general.add_option( '-i', '--ignore-errors', '--no-abort-on-error', action='store_true', dest='ignoreerrors', default=True, @@ -810,11 +810,13 @@ def parseOpts(overrideArguments=None): verbosity.add_option( '-C', '--call-home', dest='call_home', action='store_true', default=False, - help='[Broken] Contact the youtube-dlc server for debugging') + # help='[Broken] Contact the youtube-dlc server for debugging') + help=optparse.SUPPRESS_HELP) verbosity.add_option( '--no-call-home', dest='call_home', action='store_false', - help='Do not contact the youtube-dlc server for debugging (default)') + # help='Do not contact the youtube-dlc server for debugging (default)') + help=optparse.SUPPRESS_HELP) filesystem = optparse.OptionGroup(parser, 'Filesystem Options') filesystem.add_option( |