Make it so we append jobs to the joblist in the for loop not
authorNathan Binkert <binkertn@umich.edu>
Tue, 15 Feb 2005 01:22:27 +0000 (20:22 -0500)
committerNathan Binkert <binkertn@umich.edu>
Tue, 15 Feb 2005 01:22:27 +0000 (20:22 -0500)
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

util/pbs/send.py

index 4daf15b454acc2ea7e536f5342a148db84f2d6e0..b796cadbd40e19c9ea0dcdfdb8fe62b5d80a41b5 100755 (executable)
@@ -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: