Make main() calls conditional - files (#3658)

This commit is contained in:
Fabio Alessandro Locati 2016-12-05 16:20:10 +00:00 committed by Matt Clay
parent 06bf2e1e63
commit 11e3ec26ea

View file

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