aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/options.py
diff options
context:
space:
mode:
authordirkf <fieldhouse@gmx.net>2022-07-03 20:05:21 +0100
committerGitHub <noreply@github.com>2022-07-03 20:05:21 +0100
commit090acd58c1d810fbef1bac08d70bbfad9c0a7504 (patch)
treed535a3dace2e2170321566ea27e3d630129b3b24 /youtube_dl/options.py
parenta03b9775d544b06a5b4f2aa630214c7c22fc2229 (diff)
downloadyoutube-dl-090acd58c1d810fbef1bac08d70bbfad9c0a7504.tar.xz
[options] Improve be35e53 (--match-/reject-title parameter value)
Resolves #31064.
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r--youtube_dl/options.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
index 6521ad881..f6621ef91 100644
--- a/youtube_dl/options.py
+++ b/youtube_dl/options.py
@@ -270,11 +270,11 @@ def parseOpts(overrideArguments=None):
selection.add_option(
'--match-title',
dest='matchtitle', metavar='REGEX',
- help='Download only matching titles (case-insensitive regex or sub-string)')
+ help='Download only matching titles (case-insensitive regex or alphanumeric sub-string)')
selection.add_option(
'--reject-title',
dest='rejecttitle', metavar='REGEX',
- help='Skip download for matching titles (case-insensitive regex or sub-string)')
+ help='Skip download for matching titles (case-insensitive regex or alphanumeric sub-string)')
selection.add_option(
'--max-downloads',
dest='max_downloads', metavar='NUMBER', type=int, default=None,