From fed7271ff4930646413167100a4d4295eb9a7e1c Mon Sep 17 00:00:00 2001 From: Bail <2915289604@qq.com> Date: Tue, 22 Nov 2022 16:44:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DPython=E4=B8=BB=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=B7=E5=88=A4=E6=96=AD=E6=97=B6=E6=BD=9C=E5=9C=A8?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.py b/mainwindow.py index fa52aaf..f4bbe05 100755 --- a/mainwindow.py +++ b/mainwindow.py @@ -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()