We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
remote-run
1 parent 0de3535 commit 061d651Copy full SHA for 061d651
utils/remote-run
@@ -89,7 +89,7 @@ class CommandRunner(object):
89
print(concatenated_commands, file=sys.stderr)
90
if self.dry_run:
91
return
92
- _, _ = sftp_proc.communicate(concatenated_commands)
+ _, _ = sftp_proc.communicate(concatenated_commands.encode('utf-8'))
93
if sftp_proc.returncode:
94
sys.exit(sftp_proc.returncode)
95
0 commit comments