You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ts...@apache.org on 2013/04/22 16:19:11 UTC

[2/2] git commit: updated refs/heads/master to a1912d9

CLOUDSTACK-2135: fix the string formatting error in cloudstackConnection.py

Signed-off-by: Prasanna Santhanam <ts...@apache.org>


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

Branch: refs/heads/master
Commit: 9572f576483796beb85c7aeb5e0ce3925aee9e42
Parents: f1b9ef8
Author: Talluri <Sr...@citrix.com>
Authored: Mon Apr 22 21:31:31 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Mon Apr 22 19:35:22 2013 +0530

----------------------------------------------------------------------
 tools/marvin/marvin/cloudstackConnection.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9572f576/tools/marvin/marvin/cloudstackConnection.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py
index 14b12e7..214a878 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: