added win32 to the OS supported

master
kirbylife 2020-12-08 15:05:25 -06:00
parent de5af9391b
commit 6db416035f
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ def check_network(ip, port):
def get_os(): def get_os():
if sys.platform in ["linux", "windows"]: if sys.platform in ["linux", "windows", "win32"]:
return sys.platform return sys.platform
raise Exception("OS not supported") raise Exception("OS not supported")