diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-17 17:36:15 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-17 18:45:44 +0530 |
commit | 24093d52a768e624a3ecd9d834f3239f64e1bf2c (patch) | |
tree | 5531967adc06b24c8efd0700f05fa931b777a023 /yt_dlp/YoutubeDL.py | |
parent | f5e438a976dcf8d7d263631ea0b0bf114b6182af (diff) | |
download | hypervideo-pre-24093d52a768e624a3ecd9d834f3239f64e1bf2c.tar.lz hypervideo-pre-24093d52a768e624a3ecd9d834f3239f64e1bf2c.tar.xz hypervideo-pre-24093d52a768e624a3ecd9d834f3239f64e1bf2c.zip |
[update] Prepare to remove Python 3.6 support
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 0f8a51dbe..d6dac7a90 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -588,8 +588,8 @@ class YoutubeDL: current_version = sys.version_info[:2] if current_version < MIN_RECOMMENDED: 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') + 'See https://github.com/yt-dlp/yt-dlp/issues/3764 for more details.' + '\n You will no longer recieve updates on this version') if current_version < MIN_SUPPORTED: msg = 'Python version %d.%d is no longer supported' self.deprecation_warning( |