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

pull/3/head
Michael DeHaan 12 years ago
parent 8d06c074b1
commit c86b388812

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