summaryrefslogtreecommitdiff
path: root/cloud/centurylink
diff options
context:
space:
mode:
authorSiva Popuri <popuri.siva@gmail.com>2015-07-23 11:28:25 -0500
committerSiva Popuri <popuri.siva@gmail.com>2015-07-23 11:28:25 -0500
commit86409ca2d475ca2b15a547718b90f29741f14b36 (patch)
treeaa0573419490d3afd346e98be17445b494be8803 /cloud/centurylink
parentf7bd44ecd775d62cb65fcea1d4d4b9328d9e077f (diff)
downloadansible-modules-extras-86409ca2d475ca2b15a547718b90f29741f14b36.tar.gz
minor documentation change
Diffstat (limited to 'cloud/centurylink')
-rw-r--r--cloud/centurylink/clc_blueprint_package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/cloud/centurylink/clc_blueprint_package.py b/cloud/centurylink/clc_blueprint_package.py
index 8feb106d..6b06b741 100644
--- a/cloud/centurylink/clc_blueprint_package.py
+++ b/cloud/centurylink/clc_blueprint_package.py
@@ -120,7 +120,8 @@ class ClcBlueprintPackage():
if not REQUESTS_FOUND:
self.module.fail_json(
msg='requests library is required for this module')
- if requests.__version__ and LooseVersion(requests.__version__) < LooseVersion('2.5.0'):
+ if requests.__version__ and LooseVersion(
+ requests.__version__) < LooseVersion('2.5.0'):
self.module.fail_json(
msg='requests library version should be >= 2.5.0')
@@ -224,7 +225,8 @@ class ClcBlueprintPackage():
def _get_servers_from_clc(self, server_list, message):
"""
Internal function to fetch list of CLC server objects from a list of server ids
- :param the list server ids
+ :param server_list: the list of server ids
+ :param message: the error message to raise if there is any error
:return the list of CLC server objects
"""
try: