1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-03 11:52:36 +01:00

Merge pull request #525 from setrofim/next

Fixes.
This commit is contained in:
setrofim
2017-10-23 18:04:25 +01:00
committed by GitHub
3 changed files with 48 additions and 43 deletions

View File

@@ -343,7 +343,7 @@ class Executor(object):
counter = context.run_state.get_status_counts()
parts = []
for status in reversed(Status.values):
for status in reversed(Status.levels):
if status in counter:
parts.append('{} {}'.format(counter[status], status))
self.logger.info(status_summary + ', '.join(parts))