redirect bug for __before__ methods in controllers

2007-05-30 Thread [EMAIL PROTECTED]
I was trying to do a redirect_to call in the __before__ method a controller. Pylons isn't catching the HTTPFound exception and doing the redirect. in pylons/controllers.py : in both the Controller and the WSGIController classes if hasattr(self, '__before__'): self._inspect_ca

Re: redirect bug for __before__ methods in controllers

2007-05-30 Thread Philip Jenvey
On May 30, 2007, at 6:31 AM, [EMAIL PROTECTED] wrote: > > I was trying to do a redirect_to call in the __before__ method a > controller. Pylons isn't catching the HTTPFound exception and doing > the redirect. > > in pylons/controllers.py : in both the Controller and the > WSGIController classes