From: Nathan Binkert Date: Tue, 15 Feb 2005 01:22:27 +0000 (-0500) Subject: Make it so we append jobs to the joblist in the for loop not X-Git-Tag: m5_1.0_tutorial~88^2~6 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5e9bc06457923893d5acf049ab5d1dd621a865cc;p=gem5.git 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 --- diff --git a/util/pbs/send.py b/util/pbs/send.py index 4daf15b45..b796cadbd 100755 --- a/util/pbs/send.py +++ b/util/pbs/send.py @@ -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: