From f7071d59cfe677f5a3638be55a9b679d05acfa01 Mon Sep 17 00:00:00 2001 From: Lawrence Johnston Date: Mon, 23 Apr 2012 20:02:50 -0700 Subject: [PATCH] Fixes #73: When start.gcode is changed changes are not saved --- Cura/util/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 3a17a45d..1596f043 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -322,7 +322,7 @@ def setAlterationFile(filename, value): if not globalProfileParser.has_section('alterations'): globalProfileParser.add_section('alterations') globalProfileParser.set('alterations', filename, value.encode("utf-8")) - saveGlobalProfile(profile.getDefaultProfilePath()) + saveGlobalProfile(getDefaultProfilePath()) ### Get the alteration file for output. (Used by Skeinforge) def getAlterationFileContents(filename): -- 2.30.2