From bb62067cd27200dc18ab33d0afe96b0f20f7721b Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Mon, 18 Aug 2014 15:01:53 -0400 Subject: [PATCH] Fixing error in ImportShape. --- cadquery/freecad_impl/importers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cadquery/freecad_impl/importers.py b/cadquery/freecad_impl/importers.py index 55d67fe..6104775 100644 --- a/cadquery/freecad_impl/importers.py +++ b/cadquery/freecad_impl/importers.py @@ -40,7 +40,7 @@ def importShape(importType,fileName): #Check to see what type of file we're working with if importType == ImportTypes.STEP: - importStep(fileName) + importStep(self,fileName) #Loads a STEP file into a CQ object def importStep(self,fileName):