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