1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-03-09 23:38:55 +00:00

Msys => windows

This commit is contained in:
topilski 2018-02-28 10:08:11 +03:00
parent 1405506db2
commit 47819920bf

View file

@ -232,6 +232,8 @@ def get_os() -> str:
uname_str = platform.system()
if 'MINGW' in uname_str:
return 'windows'
elif 'MSYS' in uname_str:
return 'windows'
elif uname_str == 'Windows':
return 'windows'
elif uname_str == 'Linux':