From 89827618e2fba70c6796839b6a31f64d39a0efed Mon Sep 17 00:00:00 2001 From: Fabio Alessandro Locati Date: Mon, 5 Dec 2016 16:23:23 +0000 Subject: Make `main()` calls conditional - source_control (#3651) --- source_control/bzr.py | 4 +++- source_control/github_hooks.py | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/source_control/bzr.py b/source_control/bzr.py index 8a75789a..961c715d 100644 --- a/source_control/bzr.py +++ b/source_control/bzr.py @@ -199,4 +199,6 @@ def main(): # import module snippets from ansible.module_utils.basic import * -main() + +if __name__ == '__main__': + main() diff --git a/source_control/github_hooks.py b/source_control/github_hooks.py index eec7a6f9..0430b440 100644 --- a/source_control/github_hooks.py +++ b/source_control/github_hooks.py @@ -201,4 +201,5 @@ def main(): from ansible.module_utils.basic import * from ansible.module_utils.urls import * -main() +if __name__ == '__main__': + main() -- cgit v1.2.1