From: Steven Dake Date: Wed, 28 Mar 2012 00:34:30 +0000 (-0700) Subject: Fix order of parmeters issue X-Git-Tag: 2014.1~2148 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=6153879cff2c2333dde5053456c3a1a4cbca0924;p=openstack-build%2Fheat-build.git Fix order of parmeters issue Signed-off-by: Steven Dake --- diff --git a/bin/run-parser.py b/bin/run-parser.py index fef77d36..5e96bb81 100755 --- a/bin/run-parser.py +++ b/bin/run-parser.py @@ -41,5 +41,5 @@ with open(filename) as f: setparam(blob, 'DBRootPassword', 'admone') setparam(blob, 'LinuxDistribution', 'F16') - stack = parser.Stack(blob, stack_name) + stack = parser.Stack(stack_name, blob) stack.start()