X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0c2185a46606c2ac3e41205fe92e6d5ba4ead1b9..1aa0603ed3b7ff359f2ebc46f6a97ad6ea009ae6:/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)