From 5e9bc06457923893d5acf049ab5d1dd621a865cc Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Mon, 14 Feb 2005 20:22:27 -0500 Subject: [PATCH] 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 --- util/pbs/send.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.30.2