aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaresh Kamboju <naresh.kamboju@linaro.org>2016-08-17 12:44:25 +0530
committerNaresh Kamboju <naresh.kamboju@linaro.org>2016-08-17 12:44:25 +0530
commit4ae5458282747909127ae781be67be220c30132e (patch)
tree6e736efc3c080c582bff1c8a6fbe7e13d42afd09
parentc3d0bc94416dbe6cf73fe37f72591cf62083f36f (diff)
robot-results-parser: fix print format
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
-rwxr-xr-xrobot-results-parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/robot-results-parser.py b/robot-results-parser.py
index a5fe6d1..ebe3bbd 100755
--- a/robot-results-parser.py
+++ b/robot-results-parser.py
@@ -35,4 +35,4 @@ for statistics in root.findall('statistics'):
status = 'pass'
else:
status = 'fail'
- print name, ":", status
+ print name, " ", status