summaryrefslogtreecommitdiff
path: root/util/pbs
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-02-14 20:22:27 -0500
committerNathan Binkert <binkertn@umich.edu>2005-02-14 20:22:27 -0500
commit5e9bc06457923893d5acf049ab5d1dd621a865cc (patch)
tree75f2200da2b38486625ce60d9a37ecc26dbfbca0 /util/pbs
parentb1ab7b53c337cd725fcddc03f1d91b11fe842c29 (diff)
downloadgem5-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')
-rwxr-xr-xutil/pbs/send.py2
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: