From 0f00cf6fe5eb78829022fc95a8741044326aed3b Mon Sep 17 00:00:00 2001 From: daid303 Date: Thu, 16 May 2013 11:32:33 +0200 Subject: [PATCH] Remove references to the steamengine, call it the CuraEngine. --- Cura/util/sliceEngine.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index 4f5e8d7d..13d5536e 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -15,10 +15,10 @@ def getEngineFilename(): if platform.system() == 'Windows': if os.path.exists('C:/Software/Cura_SteamEngine/_bin/Release/Cura_SteamEngine.exe'): return 'C:/Software/Cura_SteamEngine/_bin/Release/Cura_SteamEngine.exe' - return os.path.abspath(os.path.join(os.path.dirname(__file__), '../..', 'SteamEngine.exe')) + return os.path.abspath(os.path.join(os.path.dirname(__file__), '../..', 'CuraEngine.exe')) if hasattr(sys, 'frozen'): - return os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../../..', 'SteamEngine')) - return os.path.abspath(os.path.join(os.path.dirname(__file__), '../..', 'SteamEngine')) + return os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../../..', 'CuraEngine')) + return os.path.abspath(os.path.join(os.path.dirname(__file__), '../..', 'CuraEngine')) def getTempFilename(): warnings.simplefilter('ignore') -- 2.30.2