mirror of
https://github.com/ARM-software/devlib.git
synced 2025-01-30 17:50:46 +00:00
utils/ssh: Fix paramiko stdin
Ensure that we open the stdin stream for writing instead of read only.
This commit is contained in:
parent
79783fa09a
commit
7065847f77
@ -660,7 +660,7 @@ class SshConnection(SshConnectionBase):
|
||||
# Read are not buffered so we will always get the data as soon as
|
||||
# they arrive
|
||||
return (
|
||||
channel.makefile_stdin(),
|
||||
channel.makefile_stdin('w', 0),
|
||||
channel.makefile(),
|
||||
channel.makefile_stderr(),
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user