This is a subtle error that is on the docket to get fixed in the future. The issue here is that the settings stored by Pyramid is a *copy* of the dict you passed to the Configurator. Thus any modifications you do to the original dict are irrelevant.
Either modify your setup code to mutate the settings dict before passing it to the Configurator, or mutate the copy via config.registry.settings. -- Michael -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
