datalad_next.patches.sshconnector

Provide proper arguments for scp-command calls in SSHConnection

The original code has errors in the methods BaseSSHConnection.put BaseSSHConnection.get. Both methods use self.sshri.hostname to determine the target for an scp-command. They should instead use self.sshri.as_str() in order to include a user specification into the target.

The changes in this patch use self.sshri.as_str() to provide the correct targets for scp-commands.