diff options
author | Simon Sawicki <contact@grub4k.xyz> | 2025-03-22 00:41:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-21 23:41:56 +0000 |
commit | f36e4b6e65cb8403791aae2f520697115cb88dec (patch) | |
tree | c161d5f0a52648e0abca699a02cb9d6897deff45 /yt_dlp/utils/_utils.py | |
parent | 983095485c731240aae27c950cb8c24a50827b56 (diff) |
[cleanup] Misc (#12526)
Authored by: Grub4K, seproDev, gamer191, dirkf
Co-authored-by: sepro <sepro@sepr0.com>
Diffstat (limited to 'yt_dlp/utils/_utils.py')
-rw-r--r-- | yt_dlp/utils/_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/utils/_utils.py b/yt_dlp/utils/_utils.py index 4093c238c..0140acaa3 100644 --- a/yt_dlp/utils/_utils.py +++ b/yt_dlp/utils/_utils.py @@ -3247,7 +3247,7 @@ def _match_one(filter_part, dct, incomplete): op = lambda attr, value: not unnegated_op(attr, value) else: op = unnegated_op - comparison_value = m['quotedstrval'] or m['strval'] or m['intval'] + comparison_value = m['quotedstrval'] or m['strval'] if m['quote']: comparison_value = comparison_value.replace(r'\{}'.format(m['quote']), m['quote']) actual_value = dct.get(m['key']) |