From 4440bdd2e29c709a35255633cca02dcf344ce907 Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Tue, 2 Dec 2014 23:52:03 -0500 Subject: [PATCH] Still trying to get Windows and Linux to agree on what paths need to be in sys.path. --- CadQuery/InitGui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/CadQuery/InitGui.py b/CadQuery/InitGui.py index 6591f4b..e403bfe 100644 --- a/CadQuery/InitGui.py +++ b/CadQuery/InitGui.py @@ -40,6 +40,7 @@ class CadQueryWorkbench (Workbench): 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, libs_path) import cadquery