minor documentation change

This commit is contained in:
Siva Popuri 2015-07-23 11:28:25 -05:00 committed by Matt Clay
parent 04ce93651c
commit c63bf938e9

View file

@ -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: