From: Thierry Parmentelat Date: Tue, 25 Mar 2008 13:34:28 +0000 (+0000) Subject: fixed typo X-Git-Tag: tests-4.2-4~176 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=d9f08e90b315568b3ec610bed1884fece9ab7c8d;p=tests.git fixed typo --- diff --git a/system/TestSsh.py b/system/TestSsh.py index 9dfee95..3a76a1c 100644 --- a/system/TestSsh.py +++ b/system/TestSsh.py @@ -68,9 +68,9 @@ class TestSsh: def run_in_buildname (self,command): if self.is_local(): return utils.system(command) - ssh_comand="ssh " + ssh_command="ssh " if self.caller.key: - ssh_comand += "-i %s.rsa "%(self.caller.key) + ssh_command += "-i %s.rsa "%(self.caller.key) ssh_command += "%s/%s"%(self.buildname,TestSsh.backslash_shell_specials(command)) return utils.system(ssh_command)