diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-08-28 02:20:18 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-08-28 02:20:40 +0530 |
commit | 2e7781a93c702fffacf0076ccd498d79e03258d4 (patch) | |
tree | 58c676062128f2e06b17d0656df0fef7a67c5e4f /yt_dlp/options.py | |
parent | bc36bc36a10fb3bfe6b835f12b6be2e53f69916e (diff) |
[docs] Fix some typos
Closes #677, #774
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index c26d498a5..0f8ce8ce8 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -411,7 +411,7 @@ def parseOpts(overrideArguments=None): 'Python style regular expression matching can be done using "~=", ' 'and multiple filters can be checked with "&". ' 'Use a "\\" to escape "&" or quotes if needed. Eg: --match-filter ' - r'"!is_live & like_count>?100 & description~=\'(?i)\bcats \& dogs\b\'" ' + '"!is_live & like_count>?100 & description~=\'(?i)\\bcats \\& dogs\\b\'" ' 'matches only videos that are not live, has a like count more than 100 ' '(or the like field is not available), and also has a description ' 'that contains the phrase "cats & dogs" (ignoring case)')) |