コード例 #1
0
 def append_list_run(self, run_file):
     """
     next.py用のlist_run.txtを追加
     """
     lines = ""
     for param in self.series:
         path = os.path.abspath(param['path'])
         run_file = os.path.abspath(run_file)
         lines += "{0}    {1}\n".format(path, run_file)
     Cabinet.append_file('list_run', lines)