From d47de74adecc0e71f4b6ea0eb0cfef41fa4fc218 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 30 Jun 2015 16:24:01 -0500 Subject: [PATCH] Replaced tabbed indentation with spaces for group module --- lib/ansible/modules/system/group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/group.py b/lib/ansible/modules/system/group.py index d952cb5c28c..53ab5f904dc 100755 --- a/lib/ansible/modules/system/group.py +++ b/lib/ansible/modules/system/group.py @@ -121,7 +121,7 @@ class Group(object): if len(cmd) == 1: return (None, '', '') if self.module.check_mode: - return (0, '', '') + return (0, '', '') cmd.append(self.name) return self.execute_command(cmd)