I am running into a problem with this file https://github.com/mhenrixon/SublimeSimpleCov/blob/master/common/theme_generator.py#L15
I’d like to convert it to a .sublime-color-theme because of the following errors:
Traceback (most recent call last):
File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 1088, in run_
return self.run(edit)
File "/Users/mhenrixon/Library/Application Support/Sublime Text 3/Packages/SimpleCov/toggle_ruby_coverage.py", line 25, in run
self.show_coverage(filename, coverage)
File "/Users/mhenrixon/Library/Application Support/Sublime Text 3/Packages/SimpleCov/toggle_ruby_coverage.py", line 43, in show_coverage
self.augment_color_scheme()
File "/Users/mhenrixon/Library/Application Support/Sublime Text 3/Packages/SimpleCov/toggle_ruby_coverage.py", line 146, in augment_color_scheme
themeGenerator = ThemeGenerator(original_color_scheme)
File "/Users/mhenrixon/Library/Application Support/Sublime Text 3/Packages/SimpleCov/common/theme_generator.py", line 48, in __init__
self.plist = ElementTree.XML(color_scheme_xml)
File "./python3.3/xml/etree/ElementTree.py", line 1356, in XML
xml.etree.ElementTree.ParseError: XML or text declaration not at start of entity: line 2, column 0
Any suggestions on either how to fix the problem or convert that dynamic template to a proper (new) one would be greatly appreciated. I’m a ruby developer with very little python exposure