Skip to content

Commit

Permalink
Bugfix for wrong style
Browse files Browse the repository at this point in the history
  • Loading branch information
Egil Moeller committed Oct 10, 2013
1 parent ee66e81 commit 3a1894c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastkml/styles.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def etree_element(self):
pair = etree.SubElement(element, "%sPair" %self.ns)
key = etree.SubElement(pair, "%skey" %self.ns)
key.text = 'highlight'
pair.append(self.normal.etree_element())
pair.append(self.highlight.etree_element())
return element


Expand Down

0 comments on commit 3a1894c

Please sign in to comment.