Skip to content

Commit ec4d4b1

Browse files
committed
what was I doing
1 parent be0603b commit ec4d4b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GDL.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ def check_system(self):
102102
""" Returns the path to the LP_XML converter.
103103
"""
104104
if sys.platform.startswith('darwin'): # OSX
105-
self.os_win = "false"
105+
self.os_win = False
106106
return "Contents/MacOS/LP_XMLConverter.app/Contents/MacOS/LP_XMLConverter"
107107
elif sys.platform.startswith('win'): # Windows
108-
self.os_win = "true"
108+
self.os_win = True
109109
return "LP_XMLConverter.exe"
110110
else:
111111
sublime.error_message("GDL build error: Your OS is not supported.")

0 commit comments

Comments
 (0)