Browse code

Fix yet another typo.

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

  • xdot.py index 8711487..37a598b 100755
... ...
@@ -622,7 +622,7 @@ class XDotAttrParser:
622 622
     def handle_text(self, x, y, j, w, t):
623 623
         self.shapes.append(TextShape(self.pen, x, y, j, w, t))
624 624
 
625
-    def handle_ecllipse(self, x0, y0, w, h):
625
+    def handle_ellipse(self, x0, y0, w, h, filled=False):
626 626
         if filled:
627 627
             # xdot uses this to mean "draw a filled shape with an outline"
628 628
             self.shapes.append(EllipseShape(self.pen, x0, y0, w, h, filled=True))