[options] Improve be35e53 (--match-/reject-title parameter value)
authordirkf <fieldhouse@gmx.net>
Sun, 3 Jul 2022 19:05:21 +0000 (20:05 +0100)
committerGitHub <noreply@github.com>
Sun, 3 Jul 2022 19:05:21 +0000 (20:05 +0100)
Resolves #31064.

youtube_dl/options.py

index 6521ad881621361e6423aa4d4421f2cc8124fc1b..f6621ef9160736d7405b765980e9a177176afd2d 100644 (file)
@@ -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,