Only strip trailing newlines from output, preserving other space
This commit is contained in:
parent
fba30c8fcb
commit
57df6da305
1 changed files with 2 additions and 2 deletions
4
command
4
command
|
@ -111,8 +111,8 @@ def main():
|
||||||
|
|
||||||
module.exit_json(
|
module.exit_json(
|
||||||
cmd = args,
|
cmd = args,
|
||||||
stdout = out.strip(),
|
stdout = out.rstrip("\r\n"),
|
||||||
stderr = err.strip(),
|
stderr = err.rstrip("\r\n"),
|
||||||
rc = cmd.returncode,
|
rc = cmd.returncode,
|
||||||
start = str(startd),
|
start = str(startd),
|
||||||
end = str(endd),
|
end = str(endd),
|
||||||
|
|
Loading…
Reference in a new issue