Closed ricardo-lou closed 4 years ago
try: system = "linux" if sys.platform.lower().startsiwth("linux") else sys.platform
Replace with:
try: system = "linux" if sys.platform.lower().startswith("linux") else sys.platform
Already fixed - check the latest commit.
try: system = "linux" if sys.platform.lower().startsiwth("linux") else sys.platform
Replace with:
try: system = "linux" if sys.platform.lower().startswith("linux") else sys.platform