diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-06-21 08:51:14 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-06-21 09:21:23 +0530 |
commit | 42f2d40b475db66486a4b4fe5b56751a640db5db (patch) | |
tree | e24059c11d6aedb0a048c2d76c3bc43044b5fa5b /yt_dlp/casefold.py | |
parent | 1619ab3e67d8dc4f86fc7ed292c79345bc0d91a0 (diff) |
Update to ytdl-commit-07af47
[YouTube] Improve fix for ae8ba2c
https://github.com/ytdl-org/youtube-dl/commit/07af47960f3bb262ead02490ce65c8c45c01741e
Diffstat (limited to 'yt_dlp/casefold.py')
-rw-r--r-- | yt_dlp/casefold.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yt_dlp/casefold.py b/yt_dlp/casefold.py new file mode 100644 index 000000000..41a53e5b6 --- /dev/null +++ b/yt_dlp/casefold.py @@ -0,0 +1,5 @@ +import warnings + +warnings.warn(DeprecationWarning(f'{__name__} is deprecated')) + +casefold = str.casefold |