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:
Nathan Binkert 2005-02-14 20:22:27 -05:00
parent b1ab7b53c3
commit 5e9bc06457

View file

@ -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: