Update options.py
authorJacob Chapman <7908073+chapmanjacobd@users.noreply.github.com>
Wed, 13 Apr 2022 12:21:23 +0000 (07:21 -0500)
committerdirkf <fieldhouse@gmx.net>
Fri, 20 May 2022 04:25:54 +0000 (05:25 +0100)
youtube_dl/options.py

index 0a0641bd481893ba2c6247386f7c3f1ee9461ccf..6521ad881621361e6423aa4d4421f2cc8124fc1b 100644 (file)
@@ -270,11 +270,11 @@ def parseOpts(overrideArguments=None):
     selection.add_option(
         '--match-title',
         dest='matchtitle', metavar='REGEX',
-        help='Download only matching titles (regex or caseless sub-string)')
+        help='Download only matching titles (case-insensitive regex or sub-string)')
     selection.add_option(
         '--reject-title',
         dest='rejecttitle', metavar='REGEX',
-        help='Skip download for matching titles (regex or caseless sub-string)')
+        help='Skip download for matching titles (case-insensitive regex or sub-string)')
     selection.add_option(
         '--max-downloads',
         dest='max_downloads', metavar='NUMBER', type=int, default=None,