about summary refs log tree commit diff
path: root/youtube_dl/options.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-02-18 23:59:26 +0700
committerSergey M․ <dstftw@gmail.com>2017-02-18 23:59:26 +0700
commitac33accd96279ee541952aaa4f0bb72b4f76b9ae (patch)
tree1e6af9321c0a5e76020364f2d61de81fcc0a82ab /youtube_dl/options.py
parente84888b4322abd2e2a74e8a89b7942a68dd0b6a5 (diff)
downloadyoutube-dl-ac33accd96279ee541952aaa4f0bb72b4f76b9ae.tar.gz
youtube-dl-ac33accd96279ee541952aaa4f0bb72b4f76b9ae.tar.xz
youtube-dl-ac33accd96279ee541952aaa4f0bb72b4f76b9ae.zip
[options] Mention quoted string literals for --match-filter
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r--youtube_dl/options.py6
1 files changed, 4 insertions, 2 deletions
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 '