corrected indentation
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/d51dd3dc Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/d51dd3dc Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/d51dd3dc Branch: refs/heads/trunk Commit: d51dd3dca88d103c1b8327edc1b6e1931efa9964 Parents: 7c27da6 Author: anthony-shaw <[email protected]> Authored: Mon Dec 28 21:27:36 2015 +1100 Committer: anthony-shaw <[email protected]> Committed: Mon Dec 28 21:27:36 2015 +1100 ---------------------------------------------------------------------- libcloud/container/drivers/ecs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/d51dd3dc/libcloud/container/drivers/ecs.py ---------------------------------------------------------------------- diff --git a/libcloud/container/drivers/ecs.py b/libcloud/container/drivers/ecs.py index c4ea82a..12b544f 100644 --- a/libcloud/container/drivers/ecs.py +++ b/libcloud/container/drivers/ecs.py @@ -73,7 +73,7 @@ class ElasticContainerDriver(ContainerDriver): ROOT, params=params, headers=self._get_headers(params['Action']) - ).object + ).object return self._to_clusters(data) def create_cluster(self, name, location=None): @@ -95,7 +95,7 @@ class ElasticContainerDriver(ContainerDriver): params=params, data=request, headers=self._get_headers(params['Action']) - ).object + ).object return self._to_cluster(response['cluster']) def destroy_cluster(self, cluster): @@ -112,7 +112,7 @@ class ElasticContainerDriver(ContainerDriver): params=params, data=request, headers=self._get_headers(params['Action']) - ).object + ).object return data['cluster']['status'] == 'INACTIVE' def install_image(self, path): @@ -157,7 +157,7 @@ class ElasticContainerDriver(ContainerDriver): params=params, data=request, headers=self._get_headers(params['Action']) - ).object + ).object containers = [] for task in response['tasks']: containers.extend(self._to_containers(task))
