aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-10-31 11:18:40 +0100
committerAndreas Oberritter <obi@saftware.de>2008-11-06 01:41:43 +0100
commit52c94625063d5ea3ebf77db99acac8a43639c12a (patch)
tree07f5d45246f2e9c1d7b779ef39931d09e3ed7f0e /lib/python/Components
parent9359d0c5d6d7b9f3413adfd00582febf8aea5d40 (diff)
downloadenigma2-52c94625063d5ea3ebf77db99acac8a43639c12a.tar.gz
enigma2-52c94625063d5ea3ebf77db99acac8a43639c12a.zip
uncomment necessary line
Diffstat (limited to 'lib/python/Components')
-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 c152e9a2..47acc87e 100644
--- a/lib/python/Components/Task.py
+++ b/lib/python/Components/Task.py
@@ -171,7 +171,7 @@ class Task(object):
if self.cwd is not None:
self.container.setCWD(self.cwd)
- #execstr = " ".join([self.cmd]+self.args)
+ execstr = " ".join([self.cmd]+self.args)
print "execute:", self.container.execute(execstr), execstr
if self.initial_input:
self.writeInput(self.initial_input)