Wrap main() in conditional

This commit is contained in:
Michael Perzel 2015-09-18 15:31:34 -05:00 committed by Matt Clay
parent 21425f36ef
commit 9c8891740c

View file

@ -163,4 +163,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
main()
if __name__ == '__main__':
main()