浏览代码

Update options.py

Jacob Chapman 3 年之前
父节点
当前提交
be35e5343a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      youtube_dl/options.py

+ 2 - 2
youtube_dl/options.py

@@ -270,11 +270,11 @@ def parseOpts(overrideArguments=None):
     selection.add_option(
     selection.add_option(
         '--match-title',
         '--match-title',
         dest='matchtitle', metavar='REGEX',
         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(
     selection.add_option(
         '--reject-title',
         '--reject-title',
         dest='rejecttitle', metavar='REGEX',
         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(
     selection.add_option(
         '--max-downloads',
         '--max-downloads',
         dest='max_downloads', metavar='NUMBER', type=int, default=None,
         dest='max_downloads', metavar='NUMBER', type=int, default=None,