diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-06 00:47:18 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-10 01:41:04 +0530 |
commit | 0181adefc6dfb560761461b567e6bbb6718dcf29 (patch) | |
tree | b6e4db45bf81602cc2c3ffca02d56aadeba5a85e /yt_dlp/YoutubeDL.py | |
parent | fd3c633d26ce5a92c540548499d15cb6d262b61d (diff) |
[build] Build Windows x86 version with py3.7
and remove redundant tests
Closes #390
:ci skip
Co-authored by: pukkandan, shirt-dev
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 0edbb4119..9ce9f5378 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -472,8 +472,7 @@ class YoutubeDL(object): if sys.version_info < (3, 6): self.report_warning( - 'Support for Python version %d.%d have been deprecated and will break in future versions of yt-dlp! ' - 'Update to Python 3.6 or above' % sys.version_info[:2]) + 'Python version %d.%d is not supported! Please update to Python 3.6 or above' % sys.version_info[:2]) def check_deprecated(param, option, suggestion): if self.params.get(param) is not None: |