From 91842a99d21fde163c4639b43ea76af0c59627c1 Mon Sep 17 00:00:00 2001 From: Martin Kilbinger Date: Tue, 4 Apr 2023 16:04:54 +0200 Subject: [PATCH] mccd runner: DEC -> DES for rho stats mode --- shapepipe/modules/mccd_plots_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shapepipe/modules/mccd_plots_runner.py b/shapepipe/modules/mccd_plots_runner.py index 7fd95b691..615b2e11a 100644 --- a/shapepipe/modules/mccd_plots_runner.py +++ b/shapepipe/modules/mccd_plots_runner.py @@ -129,9 +129,9 @@ def mccd_plots_runner( ) warnings.warn(msg) w_log.info(msg) - elif rho_stat_plot_style != 'HSC' and rho_stat_plot_style != 'DEC': + elif rho_stat_plot_style != 'HSC' and rho_stat_plot_style != 'DES': msg = ( - 'The rho stat definition should be HSC or DEC. An unknown' + 'The rho stat definition should be HSC or DES. An unknown' + ' definition was used. Rho stat calculation aborted.' ) warnings.warn(msg)