mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-19 00:17:51 +02:00
fix compatible logic
This commit is contained in:
@ -59,7 +59,7 @@ def compatibility(mod_name, compatible):
|
|||||||
platform_found = False
|
platform_found = False
|
||||||
|
|
||||||
for platform in compatible:
|
for platform in compatible:
|
||||||
if platform.startswith(sys.platform):
|
if sys.platform.startswith(platform):
|
||||||
platform_found = True
|
platform_found = True
|
||||||
break
|
break
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user