summaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-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)