protect another portion against None name
This commit is contained in:
parent
506e6ff2e2
commit
d8e91f01b0
1 changed files with 6 additions and 5 deletions
|
@ -410,11 +410,12 @@ def main():
|
||||||
out += out_pip
|
out += out_pip
|
||||||
err += err_pip
|
err += err_pip
|
||||||
|
|
||||||
for pkg in name:
|
if pkg:
|
||||||
is_present = _is_present(pkg, version, out.split())
|
for pkg in name:
|
||||||
if (state == 'present' and not is_present) or (state == 'absent' and is_present):
|
is_present = _is_present(pkg, version, out.split())
|
||||||
changed = True
|
if (state == 'present' and not is_present) or (state == 'absent' and is_present):
|
||||||
break
|
changed = True
|
||||||
|
break
|
||||||
module.exit_json(changed=changed, cmd=freeze_cmd, stdout=out, stderr=err)
|
module.exit_json(changed=changed, cmd=freeze_cmd, stdout=out, stderr=err)
|
||||||
|
|
||||||
if requirements or has_vcs:
|
if requirements or has_vcs:
|
||||||
|
|
Loading…
Reference in a new issue