aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/options.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-02-10 21:13:28 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-02-11 12:07:10 +0530
commit3856407a864d832b345ac3ad58e8df68ce20eab5 (patch)
treee70c1d899688951f36943e63939fc2d35d3ba601 /yt_dlp/options.py
parentdb2e129ca0c11de84d57b2298dffd5d87e852518 (diff)
downloadhypervideo-pre-3856407a864d832b345ac3ad58e8df68ce20eab5.tar.lz
hypervideo-pre-3856407a864d832b345ac3ad58e8df68ce20eab5.tar.xz
hypervideo-pre-3856407a864d832b345ac3ad58e8df68ce20eab5.zip
[options] Rename `--clean-infojson` to `--clean-info-json`
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r--yt_dlp/options.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py
index d89f74ac5..2ba7d2601 100644
--- a/yt_dlp/options.py
+++ b/yt_dlp/options.py
@@ -1208,13 +1208,13 @@ def create_parser():
action='store_false', dest='allow_playlist_files',
help='Do not write playlist metadata when using --write-info-json, --write-description etc.')
filesystem.add_option(
- '--clean-infojson',
+ '--clean-info-json', '--clean-infojson',
action='store_true', dest='clean_infojson', default=None,
help=(
'Remove some private fields such as filenames from the infojson. '
'Note that it could still contain some personal information (default)'))
filesystem.add_option(
- '--no-clean-infojson',
+ '--no-clean-info-json', '--no-clean-infojson',
action='store_false', dest='clean_infojson',
help='Write all fields to the infojson')
filesystem.add_option(