1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-07 08:47:05 +00:00

Replaced tabbed indentation with spaces for group module

This commit is contained in:
Matt Martz 2015-06-30 16:24:01 -05:00 committed by Matt Clay
parent 30d5c1166c
commit d47de74ade

View file

@ -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)