fix command list to extend, not append

This commit is contained in:
Paul Durivage 2016-05-25 15:15:00 -05:00
parent 0e4a023a7e
commit ca61b2dd9d

View file

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