diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2014-06-12 11:34:22 -0400 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2014-06-12 11:34:22 -0400 |
commit | 747273f6464b362f54c86e2de0b8ab58f5872169 (patch) | |
tree | 7347c7724cb3d6b7c9dc7ff91e976c2a0453f196 /steuermann | |
parent | 0822291ce154bdb7f5fc575ead11d109d47646ff (diff) | |
download | steuermann-747273f6464b362f54c86e2de0b8ab58f5872169.tar.gz |
modified a bit
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1280 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'steuermann')
-rw-r--r-- | steuermann/run.py | 5 |
1 files 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 |