diff options
author | coletdjnz <colethedj@protonmail.com> | 2021-08-24 15:52:40 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-24 09:22:40 +0530 |
commit | 0bb1bc1b107b9c3d68ea0c887bd09cad75d7714d (patch) | |
tree | 7069c9c0a65c19288d1c355d3e407dfb0a555fd1 /yt_dlp/options.py | |
parent | 45842107b90988187df0727683e6d93ee4ece34b (diff) | |
download | hypervideo-pre-0bb1bc1b107b9c3d68ea0c887bd09cad75d7714d.tar.lz hypervideo-pre-0bb1bc1b107b9c3d68ea0c887bd09cad75d7714d.tar.xz hypervideo-pre-0bb1bc1b107b9c3d68ea0c887bd09cad75d7714d.zip |
[youtube] Remove annotations and deprecate `--write-annotations` (#765)
Closes #692
Authored by: coletdjnz
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 6bad37d19..86aad3393 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1070,11 +1070,11 @@ def parseOpts(overrideArguments=None): filesystem.add_option( '--write-annotations', action='store_true', dest='writeannotations', default=False, - help='Write video annotations to a .annotations.xml file') + help=optparse.SUPPRESS_HELP) filesystem.add_option( '--no-write-annotations', action='store_false', dest='writeannotations', - help='Do not write video annotations (default)') + help=optparse.SUPPRESS_HELP) filesystem.add_option( '--write-playlist-metafiles', action='store_true', dest='allow_playlist_files', default=None, |