From 20bc6b4da5894ccf5fd1db9d5627e53a151188d2 Mon Sep 17 00:00:00 2001 From: Jakob Staudt Date: Thu, 24 May 2018 10:04:47 +0000 Subject: [PATCH] Fixed Indentation Error in line 1077 --- FlatCAMObj.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlatCAMObj.py b/FlatCAMObj.py index b8c12945..bea692b5 100644 --- a/FlatCAMObj.py +++ b/FlatCAMObj.py @@ -1074,7 +1074,7 @@ class FlatCAMCNCjob(FlatCAMObj, CNCjob): preamble = str(self.ui.prepend_text.get_value()) postamble = str(self.ui.append_text.get_value()) - processor = str(self.ui.process_script.get_value()) + processor = str(self.ui.process_script.get_value()) self.export_gcode(filename, preamble=preamble, postamble=postamble, processor=processor)