Skip to content

Commit 4d8931c

Browse files
committed
Fixed an error in the submission command
1 parent 9724135 commit 4d8931c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/Cluster.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,11 +584,11 @@ def submit(self, script_location):
584584
"""
585585

586586
cmd = "{ssh} {host} '{submit_cmd} {script}'".format(ssh = self.sshcmd, host = self.hostname,
587-
submit_cmd = self.submit_name, script = script_location)
587+
submit_cmd = self.submit_command, script = script_location)
588588
if self.use_active_shell:
589589
cmd = "{ssh} {host} -t '{shell} --login -c \"{submit_cmd} {script}\"'".format(ssh = self.sshcmd,
590590
host = self.hostname,
591-
submit_cmd = self.submit_name, script = script_location,
591+
submit_cmd = self.submit_command, script = script_location,
592592
shell = self.terminal)
593593

594594

0 commit comments

Comments
 (0)