From 2d71d9be196334c1db0164f992243a912e9c5560 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Wed, 30 Apr 2008 21:06:23 +0200 Subject: * host/inter - fix python syntax bug. --- host/inter/path.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/host/inter/path.py b/host/inter/path.py index f1463f33..76db970a 100644 --- a/host/inter/path.py +++ b/host/inter/path.py @@ -38,4 +38,5 @@ class Path (Drawable): def draw (self): self.reset () if len (self.path) > 2: - self.draw_line (self.path, fill = 'green', arrow = LAST) + fmt = dict (fill = 'green', arrow = LAST) + self.draw_line (*self.path, **fmt) -- cgit v1.2.3