From: Lawrence Johnston Date: Tue, 24 Apr 2012 03:02:50 +0000 (-0700) Subject: Fixes #73: When start.gcode is changed changes are not saved X-Git-Tag: RC3~23^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f7071d59cfe677f5a3638be55a9b679d05acfa01;p=cura.git Fixes #73: When start.gcode is changed changes are not saved --- 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):