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)