From 95789f3949b01c79c729315ff375d0e759f64970 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 27 Jan 2017 15:45:23 -0800 Subject: PEP 8 whitespace cleanup. (#20783) * PEP 8 E271 whitespace cleanup. * PEP 8 W293 whitespace cleanup. * Fix whitespace issue from recent PR. --- lib/ansible/modules/packaging/os/layman.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ansible/modules/packaging/os/layman.py') diff --git a/lib/ansible/modules/packaging/os/layman.py b/lib/ansible/modules/packaging/os/layman.py index 440001b48a..f18189f69c 100644 --- a/lib/ansible/modules/packaging/os/layman.py +++ b/lib/ansible/modules/packaging/os/layman.py @@ -158,7 +158,7 @@ def install_overlay(module, name, list_url=None): if layman.is_installed(name): return False - + if module.check_mode: mymsg = 'Would add layman repo \'' + name + '\'' module.exit_json(changed=True, msg=mymsg) @@ -195,7 +195,7 @@ def uninstall_overlay(module, name): if not layman.is_installed(name): return False - + if module.check_mode: mymsg = 'Would remove layman repo \'' + name + '\'' module.exit_json(changed=True, msg=mymsg) -- cgit v1.2.1