remove self from function outside of class (#24017)
* remove self from function outside of class * fix indentation
This commit is contained in:
parent
a3053d8c2c
commit
45ac28ba04
1 changed files with 2 additions and 2 deletions
|
@ -257,8 +257,8 @@ def main():
|
|||
elbs=elb_information.list_elbs())
|
||||
|
||||
except BotoServerError as err:
|
||||
self.module.fail_json(msg="{0}: {1}".format(err.error_code, err.error_message),
|
||||
exception=traceback.format_exc())
|
||||
module.fail_json(msg="{0}: {1}".format(err.error_code, err.error_message),
|
||||
exception=traceback.format_exc())
|
||||
|
||||
module.exit_json(**ec2_facts_result)
|
||||
|
||||
|
|
Loading…
Reference in a new issue