Browse code

Fix typo (arpad.zsuzsi).

Jose.R.Fonseca authored on 30/03/2009 11:47:04
Showing 1 changed files

  • xdot.py index 41d5b60..8711487 100755
... ...
@@ -625,8 +625,8 @@ class XDotAttrParser:
625 625
     def handle_ecllipse(self, x0, y0, w, h):
626 626
         if filled:
627 627
             # xdot uses this to mean "draw a filled shape with an outline"
628
-            self.shapes.append(EclipseShape(self.pen, x0, y0, w, h, filled=True))
629
-        self.shapes.append(EclipseShape(self.pen, x0, y0, w, h))
628
+            self.shapes.append(EllipseShape(self.pen, x0, y0, w, h, filled=True))
629
+        self.shapes.append(EllipseShape(self.pen, x0, y0, w, h))
630 630
 
631 631
     def handle_line(self, points):
632 632
         self.shapes.append(LineShape(self.pen, points))