summaryrefslogtreecommitdiff
path: root/host/inter
diff options
context:
space:
mode:
authorNicolas Schodet2008-04-30 21:06:23 +0200
committerNicolas Schodet2008-04-30 21:06:23 +0200
commit2d71d9be196334c1db0164f992243a912e9c5560 (patch)
treec52bb67507ea99ffd4b5eaaf152d063022e1ce52 /host/inter
parent3bfdb79ad96ddd67f4ece95adf178b003c5d5ff3 (diff)
* host/inter
- fix python syntax bug.
Diffstat (limited to 'host/inter')
-rw-r--r--host/inter/path.py3
1 files changed, 2 insertions, 1 deletions
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)