summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
authorhongbo tian <hongbo.tianhongbo@huawei.com>2016-12-20 11:27:28 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-20 11:27:28 +0000
commit5230decde18c9640a60118e091840fd1eedd5d3d (patch)
tree51f3f515d8f26f4c34c3c726a7be2313cc13567a /dovetail/report.py
parent5f53e6ec38e4f0d1e200249954f655abba8bcc18 (diff)
parent06bc12f0b6212ee5e9a29468da327d52ad057fac (diff)
Merge "bugfix for duration missed"
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index bee84041..654e6bf8 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -98,7 +98,7 @@ class Report:
report_txt += 'Validation ID: %s\n' % report_data['validation_ID']
report_txt += 'Upload Date: %s\n' % report_data['upload_date']
if report_data['duration'] == 0:
- report_txt += 'Duration: %s\n\n' % 'NA'
+ report_txt += 'Duration: %s\n\n' % 'N/A'
else:
report_txt += 'Duration: %.2f s\n\n' % report_data['duration']