diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2014-06-12 11:13:36 -0400 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2014-06-12 11:13:36 -0400 |
commit | 9645a504c7d100ec9c23b91841cf43d1383e90c4 (patch) | |
tree | f47d3ab289e6c809543daecbc0c4a14ad033196b /steuermann | |
parent | d023a4b56f1a2ad5b0410ff943f43644d18199c1 (diff) | |
download | steuermann-9645a504c7d100ec9c23b91841cf43d1383e90c4.tar.gz |
updated debugging
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1272 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'steuermann')
-rw-r--r-- | steuermann/run.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/steuermann/run.py b/steuermann/run.py index a93fba0..7464dfc 100644 --- a/steuermann/run.py +++ b/steuermann/run.py @@ -151,6 +151,11 @@ class runner(object): runname=run_name, ) + print + print 'script = %s' %script + print + + # also stick everything from env into args (if not already defined) for k, v in os.environ.items(): if k not in args.keys(): @@ -170,11 +175,6 @@ class runner(object): else : raise Exception() - print - print 'run = %s' %run - print - - t = [ ] for x in run : # bug: what to do in case of keyerror |