From ff12ba9203186ec2b52577c380c6e4c08600149e Mon Sep 17 00:00:00 2001 From: Bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Fri, 31 Mar 2023 18:15:22 -0500 Subject: [PATCH] fixup! REQUIRED_VERSION_STR --- qbit_manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbit_manage.py b/qbit_manage.py index 36e18cf..692a27d 100755 --- a/qbit_manage.py +++ b/qbit_manage.py @@ -19,7 +19,7 @@ REQUIRED_VERSION = (3, 8, 1) REQUIRED_VERSION_STR = ".".join(str(x) for x in REQUIRED_VERSION) current_version = sys.version_info -if current_version < (REQUIRED_VERSION_STR): +if current_version < (REQUIRED_VERSION): print( "Version Error: Version: %s.%s.%s incompatible with qbit_manage please use Python %s+" % (current_version[0], current_version[1], current_version[2], REQUIRED_VERSION_STR)