mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
And again double quotes..
This commit is contained in:
parent
6b61fdbe5c
commit
32880a093e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue