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

This commit is contained in:
Zuul 2021-01-22 10:26:20 +00:00 committed by Gerrit Code Review
commit 74c14d8f69
1 changed files with 1 additions and 1 deletions

View File

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