Make it so we append jobs to the joblist in the for loop not
outside of the loop so we get all of the jobs, not just the last one. util/pbs/send.py: fix indent --HG-- extra : convert_revision : eee9546b4945ff949fdfdf339fc95a23603b47d3
This commit is contained in:
parent
b1ab7b53c3
commit
5e9bc06457
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ if not onlyecho:
|
|||
job.cleandir(jobdir)
|
||||
else:
|
||||
os.mkdir(jobdir)
|
||||
jl.append(jobname)
|
||||
jl.append(jobname)
|
||||
joblist = jl
|
||||
|
||||
for jobname in joblist:
|
||||
|
|
Loading…
Reference in a new issue