diff options
Diffstat (limited to 'steuermann/run.py')
-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 |