Add ansible.legacy.setup to be fixed on py3.5
This commit is contained in:
parent
43b104d402
commit
8d3026b109
|
@ -553,7 +553,7 @@ def _fix_py35(invocation, module_source):
|
|||
We replace a relative import in the setup module with the actual full file path
|
||||
This works in vanilla Ansible but not in Mitogen otherwise
|
||||
"""
|
||||
if invocation.module_name in {'ansible.builtin.setup', 'setup'} and \
|
||||
if invocation.module_name in {'ansible.builtin.setup', 'ansible.legacy.setup', 'setup'} and \
|
||||
invocation.module_path not in invocation._overridden_sources:
|
||||
# in-memory replacement of setup module's relative import
|
||||
# would check for just python3.5 and run this then but we don't know the
|
||||
|
|
Loading…
Reference in New Issue