Thanks for catching this Luke. On Sun, Dec 7, 2008 at 1:40 PM, <[EMAIL PROTECTED]> wrote: > > Author: lmacken > Date: Sun Dec 7 12:40:27 2008 > New Revision: 5837 > URL: http://trac.turbogears.org/changeset/5837 > > Log: > Fix make_base_app so the wrap_app parameter is actually inserted into > the WSGI middleware stack (Ticket #2051). > > Modified: > trunk/tg/configuration.py > > Modified: trunk/tg/configuration.py > ============================================================================== > --- trunk/tg/configuration.py (original) > +++ trunk/tg/configuration.py Sun Dec 7 12:40:27 2008 > @@ -428,7 +428,7 @@ > load_environment(global_conf, app_conf) > app = TGApp() > if wrap_app: > - wrap_app(app) > + app = wrap_app(app) > app = self.add_core_middleware(app) > > if self.use_toscawidgets:
--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Trunk" 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-trunk?hl=en -~----------~----~----~----~------~----~------~--~---
