Commit 771fbff3 authored by Kristopher Ruzic's avatar Kristopher Ruzic

fixes bug with printing list of lists

parent 1d6cc5a6
......@@ -162,9 +162,10 @@ else:
kvm_argument_list.append(tap_network_parameter)
build["qemuargs"] = kvm_argument_list
build["qemuargs"] = filter(None, kvm_argument_list)
print 'Generating Packer json with qemu args: \n %%s' %% ' '.join(kvm_argument_list)
print 'Generating Packer json with qemu args: \n'
print build["qemuargs"]
gen_packer_json(build)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment