From 4f0e1c850c4c6cca4324d24b9ce474038a09baf4 Mon Sep 17 00:00:00 2001 From: Robin Roth Date: Thu, 29 Jan 2015 10:32:09 +0100 Subject: [PATCH] fixed tab/space mix --- lib/ansible/modules/extras/packaging/os/zypper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/packaging/os/zypper.py b/lib/ansible/modules/extras/packaging/os/zypper.py index fc4cca0122..a6fdc5e718 100644 --- a/lib/ansible/modules/extras/packaging/os/zypper.py +++ b/lib/ansible/modules/extras/packaging/os/zypper.py @@ -141,7 +141,7 @@ def get_package_state(m, packages): installed_state[package] = False for package in packages: - if package not in installed_state: + if package not in installed_state: print package + ' was not returned by rpm \n' return None