Addresses #5023 Fix import comments

This commit is contained in:
James Tanner
2013-12-02 15:13:49 -05:00
parent 6000d636b3
commit ad837709bd
94 changed files with 94 additions and 94 deletions

View File

@@ -128,6 +128,6 @@ def main():
module.exit_json(changed=True, room=room, msg=msg, notify=notify)
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -194,7 +194,7 @@ def main():
module.exit_json(changed=False, msg=module.params["msg"])
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -83,6 +83,6 @@ def main():
# Mission complete
module.exit_json(msg="OK")
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -139,6 +139,6 @@ def main():
module.exit_json(changed=changed, room=room, msg_from=msg_from,
msg=msg)
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -154,6 +154,6 @@ def main():
module.exit_json(changed=False, channel=channel, nick=nick,
msg=msg)
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -141,6 +141,6 @@ def main():
module.exit_json(changed=False, to=to, user=user, msg=msg.getBody())
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -247,6 +247,6 @@ def main():
module.exit_json(changed=False)
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -175,6 +175,6 @@ def main():
module.exit_json(changed=False, topic=topic)
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()

View File

@@ -71,6 +71,6 @@ def main():
module.exit_json(msg=msg, changed=False)
# this is magic, see lib/ansible/module_common.py
# import module snippets
from ansible.module_utils.basic import *
main()