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.
2 parents 39ad5e4 + 061d651 commit bf5698fCopy full SHA for bf5698f
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