From 32880a093e3acc42cf4b028c5d3985bb376a3e7b Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Tue, 2 Aug 2016 09:37:17 +0200 Subject: [PATCH] And again double quotes.. --- plugins/CuraEngineBackend/CuraEngineBackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index ba6f6bf7b7..82ee3b8c84 100644 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -56,7 +56,7 @@ class CuraEngineBackend(Backend): if Platform.isLinux() and not default_engine_location: if not os.getenv("PATH"): raise OSError("There is something wrong with your Linux installation.") - for pathdir in os.getenv('PATH').split(os.pathsep): + for pathdir in os.getenv("PATH").split(os.pathsep): execpath = os.path.join(pathdir, executable_name) if os.path.exists(execpath): default_engine_location = execpath