Make main() calls conditional - notifications (#3656)

This commit is contained in:
Fabio Alessandro Locati 2016-12-05 16:21:26 +00:00 committed by Matt Clay
parent afa6fa9a89
commit 96780cf035
10 changed files with 28 additions and 11 deletions

View file

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