From deb11be684e5cbd0974401615d9926d13221ff5c Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 8 May 2015 21:18:59 -0500 Subject: [PATCH] Interpolate container name into error message In the event failed to start, the container name was not being properly interpolated into the error message. --- cloud/lxc/lxc_container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/lxc/lxc_container.py b/cloud/lxc/lxc_container.py index 5f0f6bb2ad6..f64161d1807 100644 --- a/cloud/lxc/lxc_container.py +++ b/cloud/lxc/lxc_container.py @@ -794,7 +794,7 @@ class LxcContainerManagement(object): rc=1, msg='The container [ %s ] failed to start. Check to lxc is' ' available and that the container is in a functional' - ' state.' + ' state.' % self.container_name ) def _check_archive(self):