Commit 48e50a9c by Pedro Romano Committed by Michael DeHaan

Rename copy/pasted variables more appropriately.

parent 5a5d431f
...@@ -126,11 +126,11 @@ def main(): ...@@ -126,11 +126,11 @@ def main():
if module.check_mode: if module.check_mode:
module.exit_json(changed=True) module.exit_json(changed=True)
cmd = '%s %s' % (easy_install, name) 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 rc += rc_easy_inst
out += out_pip out += out_easy_inst
err += err_pip err += err_easy_inst
changed = True changed = True
......
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