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/10/10 14:18:03 UTC

git commit: updated refs/heads/master to 52c2bc0

Updated Branches:
  refs/heads/master bb7493775 -> 52c2bc0ba


pep8: fix regression from 10938612cc9f518e254f8756581548eeb52913b4

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/52c2bc0b
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/52c2bc0b
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/52c2bc0b

Branch: refs/heads/master
Commit: 52c2bc0baf69c31ef54617e391e5badf85db53e9
Parents: bb74937
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Thu Oct 10 17:47:33 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Thu Oct 10 17:47:52 2013 +0530

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/52c2bc0b/tools/marvin/marvin/cloudstackConnection.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py
index c5a4c67..686c533 100644
--- a/tools/marvin/marvin/cloudstackConnection.py
+++ b/tools/marvin/marvin/cloudstackConnection.py
@@ -32,8 +32,10 @@ from requests import RequestException
 
 
 class cloudConnection(object):
+
     """ Connections to make API calls to the cloudstack management server
     """
+
     def __init__(self, mgtSvr, port=8096, user=None, passwd=None,
                  apiKey=None, securityKey=None,
                  asyncTimeout=3600, logging=None, scheme='http',
@@ -144,9 +146,11 @@ class cloudConnection(object):
 
         try:
             if method == 'POST':
-                response = requests.post(self.baseurl, params=payload, verify=False)
+                response = requests.post(
+                    self.baseurl, params=payload, verify=False)
             else:
-                response = requests.get(self.baseurl, params=payload, verify=False)
+                response = requests.get(
+                    self.baseurl, params=payload, verify=False)
         except ConnectionError, c:
             self.logging.debug("Connection refused. Reason: %s : %s" %
                                (self.baseurl, c))