From d5aa9e0a26aecc1bc78668984e89a1c0c3cdc873 Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Tue, 2 Dec 2014 23:47:50 -0500 Subject: [PATCH] Removed the root Libs directory path from the sys.path entries. --- CadQuery/InitGui.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CadQuery/InitGui.py b/CadQuery/InitGui.py index 6cacccd..6591f4b 100644 --- a/CadQuery/InitGui.py +++ b/CadQuery/InitGui.py @@ -39,8 +39,7 @@ class CadQueryWorkbench (Workbench): module_base_path = module_locator.module_path() libs_dir_path = os.path.join(module_base_path, 'Libs') libs_path = os.path.join(libs_dir_path, 'libs.zip') - #sys.path.insert(0, os.path.join(libs_dir_path, 'cadquery')) - #sys.path.insert(0, libs_dir_path) + sys.path.insert(0, os.path.join(libs_dir_path, 'cadquery')) sys.path.insert(0, libs_path) import cadquery