fix command list to extend, not append

reviewable/pr18780/r1
Paul Durivage 9 years ago
parent 0e4a023a7e
commit ca61b2dd9d

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