diff --git a/CHANGELOG.md b/CHANGELOG.md index ca58be9fa75c72b4c072c1a92653216cf0de9772..00bf6589b9ea4a53ee7cf5ccf1e0a516b0f31c86 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 5236d8ae14b54372e41058e9d0ce8cb1723fb2a9..7554741a477629992abdb3c32dd4bdf3d6650cfb 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.",