about summary refs log tree commit diff
path: root/youtube_dl/options.py
diff options
context:
space:
mode:
authorJacob Chapman <7908073+chapmanjacobd@users.noreply.github.com>2022-04-13 07:21:23 -0500
committerdirkf <fieldhouse@gmx.net>2022-05-20 05:25:54 +0100
commitbe35e5343a6c31f5f32ee216ab4486a1992260c5 (patch)
tree6545b278de0ef729c03ddbef279bafda1d91a100 /youtube_dl/options.py
parentc3deca86aedd2d8ab7cd0c596fd68b7aeb7c042d (diff)
downloadyoutube-dl-be35e5343a6c31f5f32ee216ab4486a1992260c5.tar.gz
youtube-dl-be35e5343a6c31f5f32ee216ab4486a1992260c5.tar.xz
youtube-dl-be35e5343a6c31f5f32ee216ab4486a1992260c5.zip
Update options.py
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 0a0641bd4..6521ad881 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 (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,