diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-08 20:51:43 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-09 04:22:29 +0530 |
commit | 486fb1797547bc83995d1b1c1bd98ffc39ae8deb (patch) | |
tree | 68020da5ebc9987d8ba13739a20938fc77089563 /yt_dlp/options.py | |
parent | 2f567473c6001160138aeb43dd6096093dd5448e (diff) | |
download | hypervideo-pre-486fb1797547bc83995d1b1c1bd98ffc39ae8deb.tar.lz hypervideo-pre-486fb1797547bc83995d1b1c1bd98ffc39ae8deb.tar.xz hypervideo-pre-486fb1797547bc83995d1b1c1bd98ffc39ae8deb.zip |
Remove `-l`, `-t`, `-A` completely and disable `--auto-number`, `--title`, `--literal`, `--id`
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 7505e8c78..3c103f6da 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -937,15 +937,15 @@ def parseOpts(overrideArguments=None): dest='trim_file_name', default=0, type=int, help='Limit the filename length (excluding extension) to the specified number of characters') filesystem.add_option( - '-A', '--auto-number', + '--auto-number', action='store_true', dest='autonumber', default=False, help=optparse.SUPPRESS_HELP) filesystem.add_option( - '-t', '--title', + '--title', action='store_true', dest='usetitle', default=False, help=optparse.SUPPRESS_HELP) filesystem.add_option( - '-l', '--literal', default=False, + '--literal', default=False, action='store_true', dest='usetitle', help=optparse.SUPPRESS_HELP) filesystem.add_option( |