We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2dd282b + 268c0af commit 99a53efCopy full SHA for 99a53ef
1 file changed
sublime_python_colors.py
@@ -87,7 +87,7 @@ def generate_color_scheme_async():
87
found_styles = {"gutter": False, "warning": False, "error": False}
88
for d in dicts.findall("./dict"):
89
for c in d.getchildren():
90
- if "sublimepythonide" in c.text:
+ if c.text and "sublimepythonide" in c.text:
91
style = style_map.get(c.text)
92
color_elem = d.find("./dict/string")
93
found_color = color_elem.text.upper().lstrip("#")
0 commit comments