From: Michael Tremer Date: Wed, 5 Jan 2011 11:53:12 +0000 (+0100) Subject: Fix typo in hypervisor type detection. X-Git-Tag: v2.0.2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a74099492dcfb931304775debc78f1045f8761fb;p=oddments%2Ffireinfo.git Fix typo in hypervisor type detection. --- diff --git a/fireinfo/hypervisor.py b/fireinfo/hypervisor.py index eb28308..76cd3a2 100644 --- a/fireinfo/hypervisor.py +++ b/fireinfo/hypervisor.py @@ -81,7 +81,7 @@ class Hypervisor(object): if self.__info["virtype"]: return self.__info["virtype"] - if self.hypervisor in ("Qemu", "KVM", "VirtualBox", "VMWare"): + if self.vendor in ("Qemu", "KVM", "VirtualBox", "VMWare"): return "full" return "unknown"