Merge pull request #1451 from dhozac/command-strip-newlines
Only strip trailing newlines from output, preserving other space
This commit is contained in:
commit
995c0a9f88
1 changed files with 2 additions and 2 deletions
4
command
4
command
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue