fixup! REQUIRED_VERSION_STR

This commit is contained in:
Bakerboy448 2023-03-31 18:15:22 -05:00
parent 6347d81387
commit ff12ba9203

View file

@ -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)