修复Python主版本号判断时潜在的问题

This commit is contained in:
Bail 2022-11-22 16:44:07 +08:00
parent 34c3cd31d1
commit fed7271ff4
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ def PythonLower():
# Python 版本检测,因为 f-string 格式化要至少 Python 3.6 及以上的版本,所以需要检测
# 判断主版本号
if sys.version_info[0] > 3:
if sys.version_info[0] < 3:
PythonLower()
if sys.version_info[1] < 6:
PythonLower()