hi, right now, my production.ini and staging.ini are close to identical except for passwords and key hashes. i want to make a base.ini and just include the entire file and only override specific sections, but i think i need to put 'use:config' within sections.
is there a better way to do this as oppose to put 'use = config:base.ini' in every section that my ini file has? it seems very repetitive. what i want: use = config:base.ini [sa-auth] cookie-secret = ... [app:main] sqlalchemy.url = ... what i think is allowed: [sa-auth] use = config:base.ini cookie-secret = ... [app:main] use = config:base.ini sqlalchemy.url = ... [logger] use = config:base.ini [other_loggers, handlers, formatters, etc] use = config:base.ini thanks, steve -- You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en.

