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

Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
Talluri 2013-04-22 21:31:31 +05:30 committed by Prasanna Santhanam
parent f1b9ef8581
commit 9572f57648
1 changed files with 1 additions and 1 deletions

View File

@ -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: