From: Ferdi van der Werf Date: Tue, 24 Apr 2012 18:08:37 +0000 (+0200) Subject: Bugfix - Missing ) X-Git-Tag: RC3~18^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=3949ebe844f2a3907aff93eb3b0a92f60f2b6101;p=cura.git Bugfix - Missing ) --- diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 19000aac..0d33b536 100644 --- a/Cura/gui/projectPlanner.py +++ b/Cura/gui/projectPlanner.py @@ -707,11 +707,11 @@ class ProjectSliceProgressWindow(wx.Frame): if action == self.actionList[0]: resultFile.write(';TYPE:CUSTOM\n') - resultFile.write(profile.getAlterationFileContents('start.gcode').encode('utf-8') + resultFile.write(profile.getAlterationFileContents('start.gcode').encode('utf-8')) else: #reset the extrusion length, and move to the next object center. resultFile.write(';TYPE:CUSTOM\n') - resultFile.write(profile.getAlterationFileContents('nextobject.gcode').encode('utf-8') + resultFile.write(profile.getAlterationFileContents('nextobject.gcode').encode('utf-8')) resultFile.write(';PRINTNR:%d\n' % self.actionList.index(action)) profile.loadGlobalProfileFromString(oldProfile) @@ -727,7 +727,7 @@ class ProjectSliceProgressWindow(wx.Frame): wx.CallAfter(self.progressGauge2.SetValue, self.actionList.index(action) + 1) resultFile.write(';TYPE:CUSTOM\n') - resultFile.write(profile.getAlterationFileContents('end.gcode').encode('utf-8') + resultFile.write(profile.getAlterationFileContents('end.gcode').encode('utf-8')) resultFile.close() self.abort = True wx.CallAfter(self.abortButton.SetLabel, 'Close')