From 9572f576483796beb85c7aeb5e0ce3925aee9e42 Mon Sep 17 00:00:00 2001 From: Talluri Date: Mon, 22 Apr 2013 21:31:31 +0530 Subject: [PATCH] CLOUDSTACK-2135: fix the string formatting error in cloudstackConnection.py Signed-off-by: Prasanna Santhanam --- tools/marvin/marvin/cloudstackConnection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py index 14b12e7910b..214a8783263 100644 --- a/tools/marvin/marvin/cloudstackConnection.py +++ b/tools/marvin/marvin/cloudstackConnection.py @@ -137,7 +137,7 @@ class cloudConnection(object): else: response = requests.get(self.baseurl, params=payload) except ConnectionError, c: - self.logging.debug("Connection refused. Reason: %s" % + self.logging.debug("Connection refused. Reason: %s : %s" % (self.baseurl, c)) raise c except HTTPError, h: