Thanks Ivan,
I've got it working however I did something different.  I just put
str() around my query and it works.  So instead of

request.session['info'].update(shape=ProductShape.objects.get(id=request['shape']))

I used:

request.session['info'].update(shape=str(ProductShape.objects.get(id=request['shape'])))



On Nov 10, 4:36 am, Ivan Sagalaev <[EMAIL PROTECTED]> wrote:
> Greg wrote:
> > request.session['info'].update(shape=ProductShape.objects.get(id=request['shape']))
> > return render_to_response('search.htm', {'pinfo':
> > request.session['info']}
>
> This might be because of your first line here doesn't work as expected.
> Session is not exactly a dict and one of the things where it differs is
> that when you put a mutable object (a list, a dict etc.) into it you
> can't change it in place. Instead you should reassign the whole object:
>
>      d = request.session['info']
>      d.update(shape=...)
>      request.session['info'] = d


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to