From aa507a1dea4423fdfd3c52695707aa379655b83a Mon Sep 17 00:00:00 2001 From: cslocum Date: Mon, 16 Jun 2014 15:18:44 +0000 Subject: make sure not to subsitute hostname git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1284 d34015c8-bcbb-4646-8ac8-8ba5febf221d --- steuermann/run.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'steuermann/run.py') diff --git a/steuermann/run.py b/steuermann/run.py index 9521b8a..17973dc 100644 --- a/steuermann/run.py +++ b/steuermann/run.py @@ -158,12 +158,14 @@ class runner(object): args[k] = v # we want things defined in the CONDITIONS block to be part of args + # (except for hostname) for k, v in nodes.saved_conditions.items(): if v == True: v = 'True' if v == False: v = 'False' - args[k] = v + if not k == 'hostname': + args[k] = v if debug : print "ARGS" -- cgit