From: daid303 Date: Thu, 16 May 2013 09:32:33 +0000 (+0200) Subject: Remove references to the steamengine, call it the CuraEngine. X-Git-Tag: 13.05~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=0f00cf6fe5eb78829022fc95a8741044326aed3b;p=cura.git Remove references to the steamengine, call it the CuraEngine. --- 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')