From 5f9d5c1403b23eaab529054993a2f78512cde75a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Fri, 25 Mar 2016 12:19:09 +0100 Subject: [PATCH] make: move down ansible import --- lib/ansible/modules/extras/system/make.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/extras/system/make.py b/lib/ansible/modules/extras/system/make.py index d375082336..9ac4712427 100644 --- a/lib/ansible/modules/extras/system/make.py +++ b/lib/ansible/modules/extras/system/make.py @@ -18,9 +18,6 @@ # You should have received a copy of the GNU General Public License # along with this software. If not, see . -# import module snippets -from ansible.module_utils.basic import * - DOCUMENTATION = ''' --- module: make @@ -118,5 +115,7 @@ def main(): run_make(make_path, module, args) module.exit_json(**args) +from ansible.module_utils.basic import * + if __name__ == '__main__': main()