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/06/28 15:33:16 UTC

git commit: updated refs/heads/master to 9e474d0

Updated Branches:
  refs/heads/master 9e8cf60b3 -> 9e474d018


do not flout pep8

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

Branch: refs/heads/master
Commit: 9e474d018b0e01290759a54924d8340e09521f68
Parents: 9e8cf60
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Fri Jun 28 19:02:59 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Fri Jun 28 19:02:59 2013 +0530

----------------------------------------------------------------------
 tools/marvin/marvin/deployDataCenter.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9e474d01/tools/marvin/marvin/deployDataCenter.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/deployDataCenter.py b/tools/marvin/marvin/deployDataCenter.py
index 4137124..941b6e9 100644
--- a/tools/marvin/marvin/deployDataCenter.py
+++ b/tools/marvin/marvin/deployDataCenter.py
@@ -147,9 +147,9 @@ specify a valid config file" % cfgFile)
             if secondarycmd.provider == 'S3':
                 for key, value in vars(secondary.details).iteritems():
                     secondarycmd.details.append({
-                        'key': key,
-                        'value': value
-                        })
+                                                'key': key,
+                                                'value': value
+                                                })
             if secondarycmd.provider == "NFS":
                 secondarycmd.zoneid = zoneId
             self.apiClient.addImageStore(secondarycmd)
@@ -167,9 +167,9 @@ specify a valid config file" % cfgFile)
             if cache.details:
                 for key, value in vars(cache.details).iteritems():
                     cachecmd.details.append({
-                        'key': key,
-                        'value': value
-                        })
+                                            'key': key,
+                                            'value': value
+                                            })
             self.apiClient.createCacheStore(cachecmd)
 
     def createnetworks(self, networks, zoneId):