Make main() calls conditional - messaging (#3654)

This commit is contained in:
Fabio Alessandro Locati 2016-12-05 16:24:50 +00:00 committed by Matt Clay
parent 6f019c1066
commit cefb569797
8 changed files with 24 additions and 8 deletions

View file

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