From 608141c09c8988c1e7ef226b74a3a3f1088d83ee Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Tue, 28 Oct 2008 09:20:18 +0000 Subject: cleanup eConsoleAppContainer code.. execute is now only possible to call with one single string argument --- lib/python/Components/Task.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/python/Components/Task.py') diff --git a/lib/python/Components/Task.py b/lib/python/Components/Task.py index 659660e8..022ca1f1 100644 --- a/lib/python/Components/Task.py +++ b/lib/python/Components/Task.py @@ -172,7 +172,8 @@ class Task(object): if self.cwd is not None: self.container.setCWD(self.cwd) - print "execute:", self.container.execute(self.cmd, self.args), self.cmd, " ".join(self.args) + execstr = self.cmd + " ".join(self.args) + print "execute:", self.container.execute(execstr), execstr if self.initial_input: self.writeInput(self.initial_input) -- cgit v1.2.3