From 3531d3cd28418d00829fd3e4177031eacb875635 Mon Sep 17 00:00:00 2001 From: Jack Neely Date: Fri, 23 May 2014 11:22:35 -0400 Subject: [PATCH] apache2_module: whitespace cleanup Remove trailing whitespace. --- library/web_infrastructure/apache2_module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/web_infrastructure/apache2_module b/library/web_infrastructure/apache2_module index 7b71a23cc93..103a1537d88 100644 --- a/library/web_infrastructure/apache2_module +++ b/library/web_infrastructure/apache2_module @@ -53,7 +53,7 @@ def _disable_module(module): if re.match(r'.*already disabled.*', stdout): module.exit_json(changed = False, result = "Success") - elif result != 0: + elif result != 0: module.fail_json(msg="Failed to disable module %s: %s" % (name, stdout)) else: module.exit_json(changed = True, result = "Disabled") @@ -65,7 +65,7 @@ def _enable_module(module): if re.match(r'.*already enabled.*', stdout): module.exit_json(changed = False, result = "Success") - elif result != 0: + elif result != 0: module.fail_json(msg="Failed to enable module %s: %s" % (name, stdout)) else: module.exit_json(changed = True, result = "Enabled")