mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Rename copy/pasted variables more appropriately.
This commit is contained in:
parent
5a5d431fa1
commit
48e50a9c11
1 changed files with 4 additions and 4 deletions
|
@ -126,11 +126,11 @@ def main():
|
|||
if module.check_mode:
|
||||
module.exit_json(changed=True)
|
||||
cmd = '%s %s' % (easy_install, name)
|
||||
rc_pip, out_pip, err_pip = module.run_command(cmd)
|
||||
rc_easy_inst, out_easy_inst, err_easy_inst = module.run_command(cmd)
|
||||
|
||||
rc += rc_pip
|
||||
out += out_pip
|
||||
err += err_pip
|
||||
rc += rc_easy_inst
|
||||
out += out_easy_inst
|
||||
err += err_easy_inst
|
||||
|
||||
changed = True
|
||||
|
||||
|
|
Loading…
Reference in a new issue