diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-28 09:20:18 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-28 09:20:18 +0000 |
| commit | 608141c09c8988c1e7ef226b74a3a3f1088d83ee (patch) | |
| tree | d3b66d1907f1c1c59504e5680de9efea588390d1 /lib/python/Components/Task.py | |
| parent | 00623b736cc9488ee71c388b0da9a8fb9071cca4 (diff) | |
| download | enigma2-608141c09c8988c1e7ef226b74a3a3f1088d83ee.tar.gz enigma2-608141c09c8988c1e7ef226b74a3a3f1088d83ee.zip | |
cleanup eConsoleAppContainer code.. execute is now only possible to call with
one single string argument
Diffstat (limited to 'lib/python/Components/Task.py')
| -rw-r--r-- | lib/python/Components/Task.py | 3 |
1 files changed, 2 insertions, 1 deletions
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) |
