1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

fix compatible logic

This commit is contained in:
Kelly Brazil
2020-05-30 17:46:09 -07:00
parent c4da8e4f78
commit 8f2e5e4808

View File

@ -59,7 +59,7 @@ def compatibility(mod_name, compatible):
platform_found = False
for platform in compatible:
if platform.startswith(sys.platform):
if sys.platform.startswith(platform):
platform_found = True
break