From 2034cdd3691636d5381aad60e8094361386a10c1 Mon Sep 17 00:00:00 2001 From: Michael Schwarz Date: Fri, 7 Aug 2015 02:01:35 +0200 Subject: Inkscape export: Removed stray semicolon in exported Asymptote files. --- support/inkscape/effect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/inkscape') diff --git a/support/inkscape/effect.py b/support/inkscape/effect.py index c111926..6d62f81 100644 --- a/support/inkscape/effect.py +++ b/support/inkscape/effect.py @@ -160,7 +160,7 @@ class ExportEffect(inkex.Effect): write_line('{}.push({})', layer_name, ' -- '.join(point_strs)) if self._asymptote_all_paths_name not in lines_by_layer_name: - write_line('path[] {};', self._asymptote_all_paths_name) + write_line('path[] {}', self._asymptote_all_paths_name) for layer_name in sorted(lines_by_layer_name): write_line('{}.append({})', self._asymptote_all_paths_name, layer_name) -- cgit