Update module_utils "import" to the new-style

Fixes #505
This commit is contained in:
Toshio Kuratomi 2015-05-18 12:08:15 -07:00 committed by Matt Clay
commit efc63d9c40
5 changed files with 22 additions and 10 deletions

View file

@ -412,5 +412,7 @@ def main():
else:
module.exit_json(changed=False)
# <<INCLUDE_ANSIBLE_MODULE_COMMON>>
main()
from ansible.module_utils.basic import *
if __name__ == '__main__':
main()