protect another portion against None name

reviewable/pr18780/r1
Brian Coca 8 years ago
parent 3c76c3669e
commit f176b767c6

@ -410,11 +410,12 @@ def main():
out += out_pip
err += err_pip
for pkg in name:
is_present = _is_present(pkg, version, out.split())
if (state == 'present' and not is_present) or (state == 'absent' and is_present):
changed = True
break
if pkg:
for pkg in name:
is_present = _is_present(pkg, version, out.split())
if (state == 'present' and not is_present) or (state == 'absent' and is_present):
changed = True
break
module.exit_json(changed=changed, cmd=freeze_cmd, stdout=out, stderr=err)
if requirements or has_vcs:

Loading…
Cancel
Save