From 3534709fb812bea303b6e875d25432de35bf5dc9 Mon Sep 17 00:00:00 2001 From: Sebastian Hoogen Date: Sat, 21 Sep 2013 08:56:11 +0200 Subject: [PATCH] fixed syntax error in OpenSCADFeatures.py --- src/Mod/OpenSCAD/OpenSCADFeatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/OpenSCAD/OpenSCADFeatures.py b/src/Mod/OpenSCAD/OpenSCADFeatures.py index 3d1f04d16..44fcd5416 100644 --- a/src/Mod/OpenSCAD/OpenSCADFeatures.py +++ b/src/Mod/OpenSCAD/OpenSCADFeatures.py @@ -291,7 +291,7 @@ class GetWire: def execute(self, fp): if fp.Base: #fp.Shape=fp.Base.Shape.Wires[0] - fp.Shape=Part.Wire(fp.Shape=fp.Base.Shape.Wires[0]) # works with 0.13 stable + fp.Shape=Part.Wire(fp.Base.Shape.Wires[0]) # works with 0.13 stable #sh = fp.Base.Shape.Wires[0].copy; sh.transformSahpe(fp.Base.Shape.Placement.toMatrix()); fp.Shape = sh #untested class Frustum: