From: Sergey M․ Date: Sat, 18 Feb 2017 16:59:26 +0000 (+0700) Subject: [options] Mention quoted string literals for --match-filter X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=ac33accd96279ee541952aaa4f0bb72b4f76b9ae;p=youtube-dl [options] Mention quoted string literals for --match-filter --- diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 2fea99ff2..deff54324 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -302,8 +302,10 @@ def parseOpts(overrideArguments=None): 'match if the key is present, ' '!key to check if the key is not present, ' 'key > NUMBER (like "comment_count > 12", also works with ' - '>=, <, <=, !=, =) to compare against a number, and ' - '& to require multiple matches. ' + '>=, <, <=, !=, =) to compare against a number, ' + 'key = \'LITERAL\' (like "uploader = \'Mike Smith\'", also works with !=) ' + 'to match against a string literal ' + 'and & to require multiple matches. ' 'Values which are not known are excluded unless you ' 'put a question mark (?) after the operator. ' 'For example, to only match videos that have been liked more than '