Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pssh/clients/native/single.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ def _scp_recv(self, remote_file, local_file):
local_fh.write(data)
while total < fileinfo.st_size:
size, data = file_chan.read(size=fileinfo.st_size - total)
while size == LIBSSH2_ERROR_EAGAIN:
if size == LIBSSH2_ERROR_EAGAIN:
wait_select(self.session)
continue
total += size
Expand Down