diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-11 00:48:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 00:48:47 +0530 |
commit | 47ab66db0f083a76c7fba0f6e136b21dd5a93e3b (patch) | |
tree | e2ee1e3234ce9c2de2cd52fdeb916de3d98b4259 /yt_dlp/YoutubeDL.py | |
parent | 0abf2f1f153ab47990edbeee3477dc55f74c7f89 (diff) |
[docs] Misc Cleanup (#8977)
Closes #8355, #8944
Authored by: bashonly, Grub4k, Arthurszzz, seproDev, pukkandan
Co-authored-by: sepro <4618135+seproDev@users.noreply.github.com>
Co-authored-by: bashonly <bashonly@protonmail.com>
Co-authored-by: Arthurszzz <minecraftgamerarthur@gmail.com>
Co-authored-by: Simon Sawicki <accounts@grub4k.xyz>
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 08d608a52..2ee9647a8 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -2227,7 +2227,7 @@ class YoutubeDL: selectors = [] current_selector = None for type, string_, start, _, _ in tokens: - # ENCODING is only defined in python 3.x + # ENCODING is only defined in Python 3.x if type == getattr(tokenize, 'ENCODING', None): continue elif type in [tokenize.NAME, tokenize.NUMBER]: |