Skip to content

Commit 221d49e

Browse files
committed
Change lines
1 parent c1f7b34 commit 221d49e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/smart_dispatch.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 "\nJobs id: {jobs_id}".format(jobs_id=" ".join(jobs_id))
99-
print "\nLogs, command, and jobs id related to this batch will be in:\n\t{smartdispatch_folder}".format(smartdispatch_folder=path_job)
98+
print "\nJobs id:\n {jobs_id}".format(jobs_id=" ".join(jobs_id))
99+
print "\nLogs, command, and jobs id related to this batch will be in:\n {smartdispatch_folder}".format(smartdispatch_folder=path_job)
100100

101101

102102
def parse_arguments():

0 commit comments

Comments
 (0)