add possibility to call eConsoleAppContainer execute with unlimited count of arguments
[enigma2.git] / lib / python / Components / Task.py
index 7ea64f1afa1b1bf0d31beb63cad2b7705b23ec0e..ab85c66718b66e7c7f090ef87965d210452093b7 100644 (file)
@@ -172,8 +172,7 @@ class Task(object):
                if self.cwd is not None:
                        self.container.setCWD(self.cwd)
 
-               execstr = self.cmd + " ".join(self.args)
-               print "execute:", self.container.execute(execstr), execstr
+               print "execute:", self.container.execute(self.cmd, *self.args), self.cmd, *self.args
                if self.initial_input:
                        self.writeInput(self.initial_input)