diff options
author | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-10-10 17:56:31 -0400 |
---|---|---|
committer | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2011-10-10 17:56:31 -0400 |
commit | 07dff6d4337ccb3ec9b5513f64e7a0741745dd8b (patch) | |
tree | 12c3e62ac8b8c85e9e6c58dbdc9185bba1aece51 /steuermann/run_all.py | |
parent | c72611ba47d69ef1716d8def542f2ad7a29fb10d (diff) | |
download | steuermann-07dff6d4337ccb3ec9b5513f64e7a0741745dd8b.tar.gz |
default everything to SKIP in interactive mode
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@445 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'steuermann/run_all.py')
-rw-r--r-- | steuermann/run_all.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/steuermann/run_all.py b/steuermann/run_all.py index 4d995cf..0c81fbf 100644 --- a/steuermann/run_all.py +++ b/steuermann/run_all.py @@ -183,7 +183,9 @@ def run_interactive( xnodes, run_name, db) : xnodes[x].finished = 0 xnodes[x].running = 0 xnodes[x].wanted = 0 - xnodes[x].skip = 0 + xnodes[x].skip = 1 + + print "Defaulting all to SKIP" keep_running = 0 |