On 13 oct, 17:08, Simon King <[email protected]> wrote:
>
> Are you using a lookup method as described 
> inhttp://www.turbogears.org/2.0/docs/main/TGControllers.html#the-lookup...
>
> class BlogController(BaseController):
>
>   �...@expose()
>    def lookup(self, year, month, day, id, *remainder):
>       dt = date(int(year), int(month), int(day))
>       blog_entry = BlogEntryController(dt, int(id))
>       return blog_entry, remainder
>
> If so, try changing your return statement to something like:
>
>       return blog_entry, list(remainder)
>

It was exactly that!
Thanks!
(Had a bit of a fright, because I make extensive use of lookup, and
forgot to change The One that caused bug I was testing for :-/ )

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to