Repository: libcloud Updated Branches: refs/heads/trunk 6ae3a29ba -> 517b74366
fix nttc sphinx error fixes: ``` Warning, treated as error: /home/travis/build/apache/libcloud/libcloud/compute/drivers/nttcis.py:docstring of libcloud.compute.drivers.nttcis.NttCisNodeDriver.ex_delete_consistency_group:6:Unexpected indentation. ``` introduced in https://github.com/apache/libcloud/commit/6ae3a29ba5522c566b893f6994cc1748c1c7b149 Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/15d141a9 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/15d141a9 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/15d141a9 Branch: refs/heads/trunk Commit: 15d141a9f7b1e9952301c2d05295b2ab458c9b25 Parents: 6ae3a29 Author: Rick van de Loo <[email protected]> Authored: Thu Dec 20 08:58:08 2018 +0100 Committer: Rick van de Loo <[email protected]> Committed: Thu Dec 20 10:04:21 2018 +0100 ---------------------------------------------------------------------- libcloud/compute/drivers/nttcis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/15d141a9/libcloud/compute/drivers/nttcis.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/nttcis.py b/libcloud/compute/drivers/nttcis.py index 6876a4e..bf19dcb 100644 --- a/libcloud/compute/drivers/nttcis.py +++ b/libcloud/compute/drivers/nttcis.py @@ -4871,7 +4871,7 @@ class NttCisNodeDriver(NodeDriver): :type consistency_group_id: ``str`` :return: True if response_code contains either - IN_PROGRESS' or 'OK' otherwise False + IN_PROGRESS' or 'OK' otherwise False :rtype: ``bool`` """ failover_elm = ET.Element("initiateFailover", @@ -4891,7 +4891,7 @@ class NttCisNodeDriver(NodeDriver): :param consistency_group_id: Id of Consistency Group to delete :type ``str`` :return: True if response_code contains either - IN_PROGRESS' or 'OK' otherwise False + IN_PROGRESS' or 'OK' otherwise False :rtype: ``bool`` """ delete_elm = ET.Element("deleteConsistencyGroup",
