diff options
-rw-r--r-- | yardstick/common/html_template.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/common/html_template.py b/yardstick/common/html_template.py index f030a2f6c..e17c76637 100644 --- a/yardstick/common/html_template.py +++ b/yardstick/common/html_template.py @@ -158,7 +158,7 @@ report_template = """ <th>value</th> </tr> <tbody> - {% for key, value in result.info.iteritems() %} + {% for key, value in result.info.items() %} <tr> <td>{{ loop.index }}</td> <td>{{key}}</td> @@ -177,7 +177,7 @@ report_template = """ <th>value</th> </tr> <tbody> - {% for key, value in result.testcases.iteritems() %} + {% for key, value in result.testcases.items() %} <tr> <td>{{ loop.index }}</td> <td>{{key}}</td> |