mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
modify_module does not need to return module_path, as the calling code already has access to it
This commit is contained in:
parent
34adb54734
commit
ca22783086
2 changed files with 3 additions and 3 deletions
|
@ -739,7 +739,7 @@ def modify_module(module_name, module_path, module_args, task_vars=dict(), modul
|
||||||
(module_data, module_style, shebang) = _find_snippet_imports(module_name, module_data, module_path, module_args, task_vars, module_compression)
|
(module_data, module_style, shebang) = _find_snippet_imports(module_name, module_data, module_path, module_args, task_vars, module_compression)
|
||||||
|
|
||||||
if module_style == 'binary':
|
if module_style == 'binary':
|
||||||
return (module_path, module_data, module_style, shebang)
|
return (module_data, module_style, shebang)
|
||||||
elif shebang is None:
|
elif shebang is None:
|
||||||
lines = module_data.split(b"\n", 1)
|
lines = module_data.split(b"\n", 1)
|
||||||
if lines[0].startswith(b"#!"):
|
if lines[0].startswith(b"#!"):
|
||||||
|
@ -762,4 +762,4 @@ def modify_module(module_name, module_path, module_args, task_vars=dict(), modul
|
||||||
else:
|
else:
|
||||||
shebang = to_bytes(shebang, errors='strict')
|
shebang = to_bytes(shebang, errors='strict')
|
||||||
|
|
||||||
return (module_path, module_data, module_style, shebang)
|
return (module_data, module_style, shebang)
|
||||||
|
|
|
@ -145,7 +145,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
|
||||||
"run 'git submodule update --init --recursive' to correct this problem." % (module_name))
|
"run 'git submodule update --init --recursive' to correct this problem." % (module_name))
|
||||||
|
|
||||||
# insert shared code and arguments into the module
|
# insert shared code and arguments into the module
|
||||||
(module_path, module_data, module_style, module_shebang) = modify_module(module_name, module_path, module_args, task_vars=task_vars, module_compression=self._play_context.module_compression)
|
(module_data, module_style, module_shebang) = modify_module(module_name, module_path, module_args, task_vars=task_vars, module_compression=self._play_context.module_compression)
|
||||||
|
|
||||||
return (module_style, module_shebang, module_data, module_path)
|
return (module_style, module_shebang, module_data, module_path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue