We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0603b commit ec4d4b1Copy full SHA for ec4d4b1
GDL.py
@@ -102,10 +102,10 @@ def check_system(self):
102
""" Returns the path to the LP_XML converter.
103
"""
104
if sys.platform.startswith('darwin'): # OSX
105
- self.os_win = "false"
+ self.os_win = False
106
return "Contents/MacOS/LP_XMLConverter.app/Contents/MacOS/LP_XMLConverter"
107
elif sys.platform.startswith('win'): # Windows
108
- self.os_win = "true"
+ self.os_win = True
109
return "LP_XMLConverter.exe"
110
else:
111
sublime.error_message("GDL build error: Your OS is not supported.")
0 commit comments