Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix python --> pythons in magic_remote_ssh.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Nov 29, 2014
1 parent 36d8a09 commit 8282ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyensae/remote/magic_remote_ssh.py
Expand Up @@ -100,7 +100,7 @@ def jobsubmit(self, line):
raise FileNotFoundError(filename)

ssh = self.get_connection()
out, err = ssh.pig_submit( filename, dependencies = python, redirection = redirection, local = local)
out, err = ssh.pig_submit( filename, dependencies = pythons, redirection = redirection, local = local)

if len(err) > 0 and (len(out) == 0 or "ERROR" in err or "FATAL" in err or "Exception" in err):
return HTML("<pre>\n%s\n</pre>" % err)
Expand Down

0 comments on commit 8282ea8

Please sign in to comment.