File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ def main():
8686
8787 # Launch the jobs
8888 print "## {nb_commands} command(s) will be executed in {nb_jobs} job(s) ##" .format (nb_commands = nb_commands , nb_jobs = len (pbs_filenames ))
89- print "Batch UID: {batch_uid}" .format (batch_uid = jobname )
89+ print "Batch UID:\n {batch_uid}" .format (batch_uid = jobname )
9090 if not args .doNotLaunch :
9191 jobs_id = []
9292 for pbs_filename in pbs_filenames :
@@ -95,8 +95,8 @@ def main():
9595
9696 with utils .open_with_lock (os .path .join (path_job , "jobs_id.txt" ), 'a' ) as jobs_id_file :
9797 jobs_id_file .writelines ("\n " .join (jobs_id ))
98- print "\n Jobs id: {jobs_id}" .format (jobs_id = " " .join (jobs_id ))
99- print "\n Logs, command, and jobs id related to this batch will be in:\n \t {smartdispatch_folder}" .format (smartdispatch_folder = path_job )
98+ print "\n Jobs id:\n {jobs_id}" .format (jobs_id = " " .join (jobs_id ))
99+ print "\n Logs, command, and jobs id related to this batch will be in:\n {smartdispatch_folder}" .format (smartdispatch_folder = path_job )
100100
101101
102102def parse_arguments ():
You can’t perform that action at this time.
0 commit comments