Hotpatch, don't check the host OS for bitness in island spec file but check python version.

This commit is contained in:
Daniel Goldberg 2020-03-05 20:20:37 +02:00
parent 05c5b856f0
commit f767482513
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ def is_windows():
def is_32_bit(): def is_32_bit():
return platform.architecture()[0] == "32bit" return sys.maxsize <= 2**32
def process_datas(orig_datas): def process_datas(orig_datas):