diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-29 06:54:41 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-29 07:09:51 +0530 |
commit | 9d339c41e25b1a77495cebe3fbdc95e2cb837776 (patch) | |
tree | 0f1c2b8aeee63db3cf2f38575ca9fdf8275f0ba2 /yt_dlp/YoutubeDL.py | |
parent | ae61d108dd83a951b6e8a27e1fb969682416150d (diff) | |
download | hypervideo-pre-9d339c41e25b1a77495cebe3fbdc95e2cb837776.tar.lz hypervideo-pre-9d339c41e25b1a77495cebe3fbdc95e2cb837776.tar.xz hypervideo-pre-9d339c41e25b1a77495cebe3fbdc95e2cb837776.zip |
Release 2022.06.29
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 0711f38c7..50b85cbfe 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -576,7 +576,9 @@ class YoutubeDL: MIN_SUPPORTED, MIN_RECOMMENDED = (3, 6), (3, 7) current_version = sys.version_info[:2] if current_version < MIN_RECOMMENDED: - msg = 'Support for Python version %d.%d has been deprecated and will break in future versions of yt-dlp' + msg = ('Support for Python version %d.%d has been deprecated. ' + 'See https://github.com/yt-dlp/yt-dlp/issues/3764 for more details. ' + 'You will recieve only one more update on this version') if current_version < MIN_SUPPORTED: msg = 'Python version %d.%d is no longer supported' self.deprecation_warning( |