Patch from David Lutterkort Fixes a minor type in kvm support where we reference a non-existent module. Signed-off-by: Mark McLoughlin <markmc@xxxxxxxxxx> Index: virtinst/virt-install =================================================================== --- virtinst.orig/virt-install 2007-04-25 15:08:25.000000000 -0700 +++ virtinst/virt-install 2007-04-25 15:25:01.000000000 -0700 @@ -519,9 +519,9 @@ hvm = True type = "qemu" if options.accelerate: - if util.is_kvm_capable(): + if virtinst.util.is_kvm_capable(): type = "kvm" - elif util.is_kqemu_capable(): + elif virtinst.util.is_kqemu_capable(): type = "kqemu" if hvm: --