From 424840d746b1ff8dc6f719d403955f64ff577d58 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 22 Jan 2008 17:19:17 +0000 Subject: [PATCH] fix errors --- qaapi/qa/modules/plc/remote_call.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.0