even more clarifications(?)

i have no idea what commit message should be
This commit is contained in:
Spaceginner 2023-01-25 22:41:51 +05:00
parent 2de99d62dd
commit 0cc5f380d5
No known key found for this signature in database
GPG key ID: 265D2778149F4183

View file

@ -26,7 +26,7 @@ def check_python_version():
version_range = range(7, 12)
try:
assert version.major == 3 and version.minor in version_range, "Unsupported Python version, please use Python 3.10.x instead. You can download latest release as of 25th January (3.10.9) from here: https://www.python.org/downloads/release/python-3109/. Please, make sure to first delete current version of Python first."
assert version.major == 3 and version.minor in version_range, "Unsupported Python version, please use Python 3.10.x instead. You can download latest release as of 25th January (3.10.9) from here: https://www.python.org/downloads/release/python-3109/. Please, make sure to first delete current version of Python first and delete `venv` folder inside of WebUI's folder, too."
except AssertionError as e:
print(e)
sys.exit(-1)