On 1/17/06, patrick kranzlmüller <[EMAIL PROTECTED]> wrote: > unfortunately, it doesn´t.
You're right. You have to consider that request.GET and request.POST
are MultiValueDicts. If you don't expect one key to have more than one
value, something like this might work:
milestones_list = milestones.get_list(
**dict([(k, v[0]) for (k, v) in request.GET.items()])
)
Andreas

