Skip to content
Snippets Groups Projects
Commit 596b0f6c authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'fix-calibpeb-summarymaker' into 'master'

Adapt MTCalibPebConfig to changes in DecisionSummaryMakerAlg properties

Closes ATR-22494

See merge request !38984
parents c06421fd 347ec1cd
No related branches found
No related tags found
No related merge requests found
...@@ -306,7 +306,7 @@ def make_summary_algs(hypo_algs): ...@@ -306,7 +306,7 @@ def make_summary_algs(hypo_algs):
summMaker.FinalStepDecisions = {} summMaker.FinalStepDecisions = {}
for hypo in hypo_algs: for hypo in hypo_algs:
for tool in hypo.HypoTools: for tool in hypo.HypoTools:
summMaker.FinalStepDecisions[tool.getName()] = str(hypo.HypoOutputDecisions) summMaker.FinalStepDecisions[tool.getName()] = [str(hypo.HypoOutputDecisions)]
log.info('summMaker = %s', summMaker) log.info('summMaker = %s', summMaker)
return [summary, summMaker] return [summary, summMaker]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment