From 747273f6464b362f54c86e2de0b8ab58f5872169 Mon Sep 17 00:00:00 2001 From: cslocum Date: Thu, 12 Jun 2014 15:34:22 +0000 Subject: modified a bit git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1280 d34015c8-bcbb-4646-8ac8-8ba5febf221d --- steuermann/run.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/steuermann/run.py b/steuermann/run.py index 3a1f578..987f687 100644 --- a/steuermann/run.py +++ b/steuermann/run.py @@ -142,7 +142,7 @@ class runner(object): args = args.copy() args.update( - script=node.script % nodes.saved_conditions, + script=node.script, script_type=node.script_type, host=node.host, table=node.table, @@ -174,7 +174,8 @@ class runner(object): t = [ ] for x in run : # bug: what to do in case of keyerror - t.append( x % args ) + thing = x % args + t.append(thing % nodes.saved_conditions) run = t -- cgit