pkgutil.py syntax fix
This commit is contained in:
parent
d4b996203a
commit
4602ca7bf4
1 changed files with 2 additions and 2 deletions
|
@ -165,9 +165,9 @@ def main():
|
|||
if rc is None:
|
||||
# pkgutil was not executed because the package was already present/absent
|
||||
result['changed'] = False
|
||||
elif rc == 0
|
||||
elif rc == 0:
|
||||
result['changed'] = True
|
||||
else
|
||||
else:
|
||||
result['changed'] = False
|
||||
result['failed'] = True
|
||||
|
||||
|
|
Loading…
Reference in a new issue