OSDN Git Service

add disable/enable 'resubmit loop' output flag
[ftg/ftg.git] / ftg / formatter / base_formatter.py
index 4c78c81..2b77ae0 100755 (executable)
@@ -20,7 +20,8 @@ class BaseFormatter(object):
         self.util = util
         self._title = title
         self._groupid = 1
-        self.output_summary = False
+        self.output_summary = True
+        self.output_resubmit_loop = True
         self.util.debug_out(self.formatter_name + " formatter initialized")
 
     def format(self):
@@ -39,4 +40,6 @@ class BaseFormatter(object):
 
     def set_output_summary(self, output_summary):
         self.output_summary = output_summary
-        
\ No newline at end of file
+
+    def set_output_resubmit_loop(self, output_resubmit_loop):
+        self.output_resubmit_loop = output_resubmit_loop
\ No newline at end of file