From 88df4f390943238047dc74194a3d6a1fd5dc584a Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Sun, 8 Nov 2009 13:17:11 +0000 Subject: [PATCH] KVMHypervisor: fix broken error format string Signed-off-by: Guido Trotter <ultrotter@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/hypervisor/hv_kvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hypervisor/hv_kvm.py b/lib/hypervisor/hv_kvm.py index 788d3ddc8..262a6feaf 100644 --- a/lib/hypervisor/hv_kvm.py +++ b/lib/hypervisor/hv_kvm.py @@ -506,7 +506,7 @@ class KVMHypervisor(hv_base.BaseHypervisor): result.output)) if not utils.IsProcessAlive(utils.ReadPidFile(pidfile)): - raise errors.HypervisorError("Failed to start instance %s: %s" % + raise errors.HypervisorError("Failed to start instance %s" % (instance.name)) if vnc_pwd: -- GitLab