##// END OF EJS Templates
quote args passed through SSH in SSHLaunchers...
MinRK -
Show More
@@ -584,7 +584,7 b' class SSHLauncher(LocalProcessLauncher):'
584
584
585 def find_args(self):
585 def find_args(self):
586 return self.ssh_cmd + self.ssh_args + [self.location] + \
586 return self.ssh_cmd + self.ssh_args + [self.location] + \
587 self.program + self.program_args
587 list(map(pipes.quote, self.program + self.program_args))
588
588
589 def _send_file(self, local, remote):
589 def _send_file(self, local, remote):
590 """send a single file"""
590 """send a single file"""
General Comments 0
You need to be logged in to leave comments. Login now