aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Task.py3
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)