chiark / gitweb /
Removed the extra comments from #632
authordaid <daid303@gmail.com>
Thu, 28 Nov 2013 14:49:16 +0000 (15:49 +0100)
committerdaid <daid303@gmail.com>
Thu, 28 Nov 2013 14:49:16 +0000 (15:49 +0100)
Cura/cura.py
Cura/util/profile.py

index 9beba7b09c81439bbbdd915143d6937a9bf32853..701b93e64a07834705a376e8064308475f21e3fd 100644 (file)
@@ -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)
index 889cc1b074440bf69fca12b1a02f81ece4e57673..db876cc49fe03696aa4e51d08da67f93d1a91104 100644 (file)
@@ -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):