Merge stdout and stderr for non-sudo
This commit is contained in:
parent
7884bc02ea
commit
fa887bc90f
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ class SSHConnection(object):
|
|||
else:
|
||||
ssh_cmd.append(cmd)
|
||||
p = subprocess.Popen(ssh_cmd, stdin=subprocess.PIPE,
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||
|
||||
# We can't use p.communicate here because the ControlMaster may have stdout open as well
|
||||
p.stdin.close()
|
||||
|
|
Loading…
Reference in a new issue