From c104904a3b14070250466ca8b748dee783030666 Mon Sep 17 00:00:00 2001 From: Orion Eiger Date: Wed, 1 Nov 2023 11:42:44 -0700 Subject: [PATCH] Switch bool logs to do_store_logs in pipe_base function call --- python/lsst/ctrl/mpexec/cli/script/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/ctrl/mpexec/cli/script/report.py b/python/lsst/ctrl/mpexec/cli/script/report.py index 81b98125..3406afe8 100644 --- a/python/lsst/ctrl/mpexec/cli/script/report.py +++ b/python/lsst/ctrl/mpexec/cli/script/report.py @@ -54,4 +54,4 @@ def report(butler_config: str, qgraph_uri: str, output_yaml: str, logs: bool = T butler = Butler.from_config(butler_config, writeable=False) qgraph = QuantumGraph.loadUri(qgraph_uri) report = QuantumGraphExecutionReport.make_reports(butler, qgraph) - report.write_summary_yaml(butler, output_yaml, logs=logs) + report.write_summary_yaml(butler, output_yaml, do_store_logs=logs)