Skip to content

Commit cca8f20

Browse files
committed
fix crash on export all layers
1 parent d754571 commit cca8f20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inkscape/export_layers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ def processExportLayer(self):
274274
layer_dest_png_path = os.path.join(output_path, "%s_%s.png" % (str(counter).zfill(3), layer_label))
275275
self.exportToPng(layer_dest_svg_path, layer_dest_png_path)
276276
finally:
277-
print "ok"
278-
# os.remove(layer_dest_svg_path)
277+
# print "ok"
278+
os.remove(layer_dest_svg_path)
279279

280280
counter = counter + 1
281281

0 commit comments

Comments
 (0)