Merge "Dumping task key instead of tasks from validation_output"

This commit is contained in:
Zuul 2020-12-04 17:18:33 +00:00 committed by Gerrit Code Review
commit 53dee001c9
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ class TripleOValidatorShowRun(command.Command):
else:
for d in data:
for p in d.get('validation_output', []):
print(json.dumps(p['tasks'],
print(json.dumps(p['task'],
indent=4,
sort_keys=True))
else: