diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-02-14 20:22:27 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-02-14 20:22:27 -0500 |
commit | 5e9bc06457923893d5acf049ab5d1dd621a865cc (patch) | |
tree | 75f2200da2b38486625ce60d9a37ecc26dbfbca0 /util/pbs/send.py | |
parent | b1ab7b53c337cd725fcddc03f1d91b11fe842c29 (diff) | |
download | gem5-5e9bc06457923893d5acf049ab5d1dd621a865cc.tar.xz |
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
Diffstat (limited to 'util/pbs/send.py')
-rwxr-xr-x | util/pbs/send.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |