Updated Branches:
  refs/heads/master 2cca33585 -> fee7a868e

CLOUDSTACK-3916: Fix silly string formatting mistake

Signed-off-by: Prasanna Santhanam <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/fee7a868
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/fee7a868
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/fee7a868

Branch: refs/heads/master
Commit: fee7a868e1a9a5d503ce5cedb94e160d442d8b79
Parents: bd7bff7
Author: Prasanna Santhanam <[email protected]>
Authored: Wed Jul 31 10:52:01 2013 +0530
Committer: Prasanna Santhanam <[email protected]>
Committed: Wed Jul 31 11:12:48 2013 +0530

----------------------------------------------------------------------
 test/integration/smoke/test_vm_life_cycle.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fee7a868/test/integration/smoke/test_vm_life_cycle.py
----------------------------------------------------------------------
diff --git a/test/integration/smoke/test_vm_life_cycle.py 
b/test/integration/smoke/test_vm_life_cycle.py
index 1281422..ff37c99 100644
--- a/test/integration/smoke/test_vm_life_cycle.py
+++ b/test/integration/smoke/test_vm_life_cycle.py
@@ -752,7 +752,7 @@ class TestVMLifeCycle(cloudstackTestCase):
         c = "mount |grep %s|head -1" % self.services["mount"]
         res = ssh_client.execute(c)
         size = ssh_client.execute("du %s | tail -1" % self.services["mount"])
-        self.debug("Found a mount point at %s with size" % (res, size))
+        self.debug("Found a mount point at %s with size %s" % (res, size))
 
         # Get ISO size
         iso_response = list_isos(

Reply via email to