Fix order of parmeters issue

Signed-off-by: Steven Dake <sdake@redhat.com>
This commit is contained in:
Steven Dake 2012-03-27 17:34:30 -07:00
parent 21f1f7abd2
commit 6153879cff
1 changed files with 1 additions and 1 deletions

View File

@ -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()