Browse code

Fix typo.

Jose.R.Fonseca authored on 29/03/2009 18:08:18
Showing 1 changed files

  • xdot.py index 51e73d1..9c18a11 100755
... ...
@@ -626,7 +626,7 @@ class XDotAttrParser:
626 626
         if filled:
627 627
             # xdot uses this to mean "draw a filled shape with an outline"
628 628
             self.shapes.append(EclipseShape(self.pen, x0, y0, w, h, filled=True))
629
-        self.shapes.append(PolygonShape(self.pen, x0, y0, w, h))
629
+        self.shapes.append(EclipseShape(self.pen, x0, y0, w, h))
630 630
 
631 631
     def handle_line(self, points):
632 632
         self.shapes.append(LineShape(self.pen, points))