From fd4357378aca084ea48f90f5261062ecc07046f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9d=C3=A9ric=20Boquien?= Date: Fri, 22 Dec 2017 23:04:16 +0100 Subject: [PATCH] An erroneous warning was displayed when using the restframe_parameters module. --- CHANGELOG.md | 1 + pcigale/session/configuration.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca58be9f..00bf6589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ - The computation of the upper limits would only work for the first few models, reverting back to regular fits for the others. (Médéric Boquien) - A more explicit message is now given when the flux table cannot be read properly. (Médéric Boquien) - Make sure that we do not try to fit data that have an error bar of 0 mJy. (Médéric Boquien) +- An erroneous warning was displayed when using the `restframe\_parameters` module. (Médéric Boquien) ### Optimised - The cache architecture has been simplified, making it somewhat faster. It speeds up the model generation by ~1%. (Médéric Boquien) diff --git a/pcigale/session/configuration.py b/pcigale/session/configuration.py index 5236d8ae..7554741a 100644 --- a/pcigale/session/configuration.py +++ b/pcigale/session/configuration.py @@ -270,7 +270,8 @@ class Configuration(object): 'themis']), ('AGN', ['dale2014', 'fritz2006']), ('radio', ['radio']), - ('restframe_parameters', ['restframe_params']), + ('restframe_parameters', + ['restframe_parameters']), ('redshift', ['redshifting']))) comments = {'SFH': "ERROR! Choosing one SFH module is mandatory.", -- GitLab