From d7e4a2b1340a2618803a182ca7aeeebcc2882d58 Mon Sep 17 00:00:00 2001 From: Andrea Spadaccini <spadaccio@google.com> Date: Tue, 9 Aug 2011 13:31:39 +0100 Subject: [PATCH] Fixed an error in the documentation of _GetKVMVersion Fixed an epydoc compilation error that I introduced with last commit. Signed-off-by: Andrea Spadaccini <spadaccio@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- lib/hypervisor/hv_kvm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/hypervisor/hv_kvm.py b/lib/hypervisor/hv_kvm.py index f03dfecfb..6420cd50e 100644 --- a/lib/hypervisor/hv_kvm.py +++ b/lib/hypervisor/hv_kvm.py @@ -952,10 +952,10 @@ class KVMHypervisor(hv_base.BaseHypervisor): @classmethod def _GetKVMVersion(cls): - """Return the installed KVM version + """Return the installed KVM version. @return: (version, v_maj, v_min, v_rev) - @raise: L{errors.HypervisorError} + @raise L{errors.HypervisorError}: when the KVM version cannot be retrieved """ result = utils.RunCmd([constants.KVM_PATH, "--help"]) -- GitLab