Strip trailing newlines from command module, which happens in some shell commands

reviewable/pr18780/r1
Michael DeHaan 13 years ago
parent 42b3eccbb2
commit 749b00a571

@ -64,8 +64,8 @@ if err is None:
err = ''
result = {
"stdout" : out,
"stderr" : err,
"stdout" : out.strip(),
"stderr" : err.strip(),
"rc" : cmd.returncode,
"start" : str(startd),
"end" : str(endd),

Loading…
Cancel
Save