1
0
Fork 0
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:
Pedro Romano 2013-08-16 10:57:48 +01:00 committed by Michael DeHaan
parent 5a5d431fa1
commit 48e50a9c11

View file

@ -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