mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Don't read from Paramiko's stderr since there isn't one.
This commit is contained in:
parent
dab50574e0
commit
fba2bdcf0c
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ class ParamikoConnection(object):
|
|||
|
||||
stdin = chan.makefile('wb', bufsize)
|
||||
stdout = chan.makefile('rb', bufsize)
|
||||
stderr = chan.makefile_stderr('rb', bufsize) # stderr goes to stdout when using a pty, so this will never output anything.
|
||||
stderr = '' # stderr goes to stdout when using a pty, so this will never output anything.
|
||||
return stdin, stdout, stderr
|
||||
|
||||
def put_file(self, in_path, out_path):
|
||||
|
|
Loading…
Reference in a new issue