From 3949ebe844f2a3907aff93eb3b0a92f60f2b6101 Mon Sep 17 00:00:00 2001 From: Ferdi van der Werf Date: Tue, 24 Apr 2012 20:08:37 +0200 Subject: [PATCH] Bugfix - Missing ) --- Cura/gui/projectPlanner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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') -- 2.30.2