From 44550340efcf43c57b2950bd826db12dff36389e Mon Sep 17 00:00:00 2001 From: jaraco Date: Sun, 27 Jul 2008 18:31:06 +0000 Subject: [PATCH] Fixed typo --- lib/svg/charts/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svg/charts/graph.py b/lib/svg/charts/graph.py index 032a25c..4cc091b 100644 --- a/lib/svg/charts/graph.py +++ b/lib/svg/charts/graph.py @@ -566,7 +566,7 @@ class Graph(object): cl = node.getAttribute('class') style = styles[cl] if node.hasAttribute('style'): - style += node.getAtrtibute('style') + style += node.getAttribute('style') node.setAttribute('style', style) def parse_css(self):