aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/options.py
diff options
context:
space:
mode:
authorbashonly <88596187+bashonly@users.noreply.github.com>2024-11-17 23:25:05 +0000
committerGitHub <noreply@github.com>2024-11-17 23:25:05 +0000
commitda252d9d322af3e2178ac5eae324809502a0a862 (patch)
treeb5fa27f62c979684c64e08bd32c57b7e15c27700 /yt_dlp/options.py
parente079ffbda66de150c0a9ebef05e89f61bb4d5f76 (diff)
[cleanup] Misc (#11554)
Closes #6884 Authored by: bashonly, Grub4K, seproDev Co-authored-by: Simon Sawicki <contact@grub4k.xyz> Co-authored-by: sepro <sepro@sepr0.com>
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r--yt_dlp/options.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py
index 6c6a0b3f9..930d9d4be 100644
--- a/yt_dlp/options.py
+++ b/yt_dlp/options.py
@@ -419,7 +419,9 @@ def create_parser():
general.add_option(
'--flat-playlist',
action='store_const', dest='extract_flat', const='in_playlist', default=False,
- help='Do not extract the videos of a playlist, only list them')
+ help=(
+ 'Do not extract a playlist\'s URL result entries; '
+ 'some entry metadata may be missing and downloading may be bypassed'))
general.add_option(
'--no-flat-playlist',
action='store_false', dest='extract_flat',