Merge pull request #1451 from dhozac/command-strip-newlines

Only strip trailing newlines from output, preserving other space
This commit is contained in:
Michael DeHaan 2012-10-25 18:21:16 -07:00
commit 995c0a9f88

View file

@ -111,8 +111,8 @@ def main():
module.exit_json(
cmd = args,
stdout = out.strip(),
stderr = err.strip(),
stdout = out.rstrip("\r\n"),
stderr = err.rstrip("\r\n"),
rc = cmd.returncode,
start = str(startd),
end = str(endd),