From: daid Date: Thu, 28 Nov 2013 14:49:16 +0000 (+0100) Subject: Removed the extra comments from #632 X-Git-Tag: 14.01~52 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=001c1f2f23048a1dc763f6c962c5eee585fb9632;p=cura.git Removed the extra comments from #632 --- diff --git a/Cura/cura.py b/Cura/cura.py index 9beba7b0..701b93e6 100644 --- a/Cura/cura.py +++ b/Cura/cura.py @@ -54,9 +54,7 @@ def main(): scene.add(m) slicer.runSlicer(scene) slicer.wait() - # ISSUE 459 - output gcode without Print time - START profile.replaceGCodeTagsFromSlicer(slicer.getGCodeFilename(), slicer) - # ISSUE 459 - output gcode without Print time - END if options.output: shutil.copyfile(slicer.getGCodeFilename(), options.output) diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 889cc1b0..db876cc4 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -918,7 +918,6 @@ def replaceGCodeTags(filename, gcodeInt): f.write(data) f.close() -# ISSUE 459 - output gcode without Print time - START def replaceGCodeTagsFromSlicer(filename, slicerInt): f = open(filename, 'r+') data = f.read(2048) @@ -932,7 +931,6 @@ def replaceGCodeTagsFromSlicer(filename, slicerInt): f.seek(0) f.write(data) f.close() -# ISSUE 459 - output gcode without Print time - END ### Get aleration raw contents. (Used internally in Cura) def getAlterationFile(filename):