From: Tony Mack Date: Tue, 22 Jan 2008 17:19:17 +0000 (+0000) Subject: fix errors X-Git-Tag: 2008-02-11-last-vmware-support~122 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=424840d746b1ff8dc6f719d403955f64ff577d58;p=tests.git fix errors --- diff --git a/qaapi/qa/modules/plc/remote_call.py b/qaapi/qa/modules/plc/remote_call.py index e947b98..ce7979c 100644 --- a/qaapi/qa/modules/plc/remote_call.py +++ b/qaapi/qa/modules/plc/remote_call.py @@ -12,7 +12,7 @@ class remote_call(Test): if not os.path.isfile(root_key_path): raise Exception, "no such private key file %(root_key_path)s" % locals() - full_command = "ssh -i %(root_key_path)s root@%(hostname) %(command)s" % locals() + full_command = "ssh -i %(root_key_path)s root@%(hostname)s %(command)s" % locals() if self.config.verbose: utils.header(full_command) (stdout, stderr) = utils.popen(full_command)