diff options
author | crupest <crupest@outlook.com> | 2022-11-28 16:17:36 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-28 16:17:36 +0800 |
commit | bb7948e18b57ffd905f2aed15e25c68a7557b0d8 (patch) | |
tree | 9b801068788430fd1c7f7d2c11c2ba288afed139 /tool | |
parent | 860edd743f8798cd4c7f8aa501371beac4500776 (diff) | |
download | crupest-bb7948e18b57ffd905f2aed15e25c68a7557b0d8.tar.gz crupest-bb7948e18b57ffd905f2aed15e25c68a7557b0d8.tar.bz2 crupest-bb7948e18b57ffd905f2aed15e25c68a7557b0d8.zip |
Fix check python version.
Diffstat (limited to 'tool')
-rwxr-xr-x | tool/aio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/aio.py b/tool/aio.py index e2a9f13..7cbefe4 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -129,7 +129,7 @@ if args.action == "certbot": if not args.no_check_python_version: - if not check_python_version(): + if check_python_version(): console.print("This script works well on python 3.10. Otherwise you may encounter some problems. But I would like to improve some rational compatibility.", style="yellow") if not args.no_check_system: |