cleanup eConsoleAppContainer code.. execute is now only possible to call with
[vuplus_dvbapp] / lib / python / Components / Task.py
index 659660e..022ca1f 100644 (file)
@@ -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)