From 453e85b55c8f4829be69cd18892878db7119b974 Mon Sep 17 00:00:00 2001 From: Sebastian Hoogen Date: Sat, 7 Jan 2012 22:45:09 +0100 Subject: [PATCH] fixed syntax error in importSVG --- src/Mod/Draft/importSVG.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index 2b023b9b6..4e95bf920 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -723,7 +723,7 @@ class svgHandler(xml.sax.ContentHandler): # else: # pathdata.append(d[0]) # pathdata.append(d[1:]) - lenpoints=len(points): + lenpoints=len(points) if lenpoints>=4 and lenpoints % 2 == 0: lastvec = Vector(point[0],-point[1],0) path=[]