Merge "Dumping task key instead of tasks from validation_output" into stable/train

This commit is contained in:
Zuul 2021-02-09 15:29:02 +00:00 committed by Gerrit Code Review
commit 10e13cbb99
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,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: