Commit 77c9082c authored by Christian Ledermann's avatar Christian Ledermann

Merge pull request #6 from SkyTruth/master

Bugfix for wrong style. oops, thanks :)
parents 84144cc1 3a1894cf
...@@ -194,7 +194,7 @@ class StyleMap(_StyleSelector): ...@@ -194,7 +194,7 @@ class StyleMap(_StyleSelector):
pair = etree.SubElement(element, "%sPair" %self.ns) pair = etree.SubElement(element, "%sPair" %self.ns)
key = etree.SubElement(pair, "%skey" %self.ns) key = etree.SubElement(pair, "%skey" %self.ns)
key.text = 'highlight' key.text = 'highlight'
pair.append(self.normal.etree_element()) pair.append(self.highlight.etree_element())
return element return element
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment