mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-2135: fix the string formatting error in cloudstackConnection.py
Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
parent
f1b9ef8581
commit
9572f57648
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue