diff options
author | Michael Schwarz <michi.schwarz@gmail.com> | 2015-08-07 02:01:35 +0200 |
---|---|---|
committer | Michael Schwarz <michi.schwarz@gmail.com> | 2015-08-07 02:03:50 +0200 |
commit | 2034cdd3691636d5381aad60e8094361386a10c1 (patch) | |
tree | b7397a255d744eaac971fdf38e0e921ade1278a1 | |
parent | 51d896929e52d935d00b81bec7e56e80ec854708 (diff) | |
download | pogojig-2034cdd3691636d5381aad60e8094361386a10c1.tar.gz pogojig-2034cdd3691636d5381aad60e8094361386a10c1.tar.bz2 pogojig-2034cdd3691636d5381aad60e8094361386a10c1.zip |
Inkscape export: Removed stray semicolon in exported Asymptote files.
-rw-r--r-- | support/inkscape/effect.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |