aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-10-31 14:04:12 +0100
committerAndreas Oberritter <obi@saftware.de>2008-11-06 01:47:03 +0100
commit0a9c12b0d928a0d4837046830a253fef966ef672 (patch)
treeb23a4e2cb5d9e1255a12b8c524d2bc9f57971265 /lib/python
parentda079b71c4d78f496dd7913a001068957746f750 (diff)
downloadenigma2-0a9c12b0d928a0d4837046830a253fef966ef672.tar.gz
enigma2-0a9c12b0d928a0d4837046830a253fef966ef672.zip
fix syntax error
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/Task.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Task.py b/lib/python/Components/Task.py
index ab85c667..f249f711 100644
--- a/lib/python/Components/Task.py
+++ b/lib/python/Components/Task.py
@@ -172,7 +172,7 @@ 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, *self.args
+ print "execute:", self.container.execute(self.cmd, *self.args), self.cmd, self.args
if self.initial_input:
self.writeInput(self.initial_input)