Commit 8873c367 by Matt Martz

Ensure we are looking for the right import to determine if the module_style is new. Fixes #5148

parent 26705296
......@@ -84,7 +84,7 @@ class ModuleReplacer(object):
module_style = 'old'
if REPLACER in module_data:
module_style = 'new'
elif 'from ansible.snippets.' in module_data:
elif 'from ansible.module_utils.' in module_data:
module_style = 'new'
elif 'WANT_JSON' in module_data:
module_style = 'non_native_want_json'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment