aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)