fix command list to extend, not append

pull/18777/head
Paul Durivage 9 years ago committed by Matt Clay
parent 0d706d25b6
commit 8166302d3d

@ -146,7 +146,7 @@ class RabbitMqUser(object):
if not self.module.check_mode or (self.module.check_mode and run_in_check_mode):
cmd = [self._rabbitmqctl, '-q']
if self.node is not None:
cmd.append(['-n', self.node])
cmd.extend(['-n', self.node])
rc, out, err = self.module.run_command(cmd + args, check_rc=True)
return out.splitlines()
return list()

Loading…
Cancel
Save