Browse Source

Fixed typo

pull/8/head
jaraco 17 years ago
parent
commit
44550340ef
  1. 2
      lib/svg/charts/graph.py

2
lib/svg/charts/graph.py

@ -566,7 +566,7 @@ class Graph(object):
cl = node.getAttribute('class') cl = node.getAttribute('class')
style = styles[cl] style = styles[cl]
if node.hasAttribute('style'): if node.hasAttribute('style'):
style += node.getAtrtibute('style') style += node.getAttribute('style')
node.setAttribute('style', style) node.setAttribute('style', style)
def parse_css(self): def parse_css(self):

Loading…
Cancel
Save