mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-12-10 05:46:35 +08:00
fixup! REQUIRED_VERSION_STR
This commit is contained in:
parent
6347d81387
commit
ff12ba9203
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue