diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-09-02 03:52:08 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-09-02 03:52:08 +0530 |
commit | 347182a0cdc175283185ad887fcae3075c955cdc (patch) | |
tree | 73f91f622502128b17dd9a054a3baeb8429e1087 | |
parent | a7429aa9fa3bc6616d9861a8ce5584a241a93ecc (diff) | |
download | hypervideo-pre-347182a0cdc175283185ad887fcae3075c955cdc.tar.lz hypervideo-pre-347182a0cdc175283185ad887fcae3075c955cdc.tar.xz hypervideo-pre-347182a0cdc175283185ad887fcae3075c955cdc.zip |
Show a more useful error in older python versions
-rw-r--r-- | yt_dlp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/__init__.py b/yt_dlp/__init__.py index 91b2bcb85..ad2d5e035 100644 --- a/yt_dlp/__init__.py +++ b/yt_dlp/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # coding: utf-8 -from __future__ import unicode_literals +f'You are using an unsupported version of Python. Only Python versions 3.6 and above are supported by yt-dlp' # noqa: F541 __license__ = 'Public Domain' |