diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-20 04:27:07 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-21 13:27:44 +0530 |
commit | fc5fa964c7ca1ee548ee3b8f1e559aac24d3d45f (patch) | |
tree | 67190c823c37b20b4d73c03f0d315fcef6a6e057 /yt_dlp/options.py | |
parent | e0ddbd02bd1c365b95bb88eaa6e4e0238faf35eb (diff) | |
download | hypervideo-pre-fc5fa964c7ca1ee548ee3b8f1e559aac24d3d45f.tar.lz hypervideo-pre-fc5fa964c7ca1ee548ee3b8f1e559aac24d3d45f.tar.xz hypervideo-pre-fc5fa964c7ca1ee548ee3b8f1e559aac24d3d45f.zip |
[docs] Improvements
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 50a70c12c..289804945 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -263,7 +263,7 @@ def create_parser(): help=( 'Don\'t load any more configuration files except those given by --config-locations. ' 'For backward compatibility, if this option is found inside the system configuration file, the user configuration is not loaded. ' - '(Alias: --no-config')) + '(Alias: --no-config)')) general.add_option( '--no-config-locations', action='store_const', dest='config_locations', const=[], @@ -1406,8 +1406,8 @@ def create_parser(): metavar='POLICY', dest='concat_playlist', default='multi_video', choices=('never', 'always', 'multi_video'), help=( - 'Concatenate videos in a playlist. One of "never" (default), "always", or ' - '"multi_video" (only when the videos form a single show). ' + 'Concatenate videos in a playlist. One of "never", "always", or ' + '"multi_video" (default; only when the videos form a single show). ' 'All the video files must have same codecs and number of streams to be concatable. ' 'The "pl_video:" prefix can be used with "--paths" and "--output" to ' 'set the output filename for the split files. See "OUTPUT TEMPLATE" for details')) |