X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FTask.py;fp=lib%2Fpython%2FComponents%2FTask.py;h=022ca1f14d90076fc32d5a126353b9c8cbbfe66a;hp=659660e82c56a0b351033828226d7dc7898f2b1b;hb=608141c09c8988c1e7ef226b74a3a3f1088d83ee;hpb=00623b736cc9488ee71c388b0da9a8fb9071cca4 diff --git a/lib/python/Components/Task.py b/lib/python/Components/Task.py index 659660e..022ca1f 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)