I've noticed that this doesn't often work in Django shell... x = MyModel.objects.all() x[3].some_field = "new value" x[3].save()
Rather, I must often do this... temp = x[3] temp.some_field = "new value" temp.save() *Sometimes* the first works and I don't know why. Please advise. Chris -- You received this message because you are subscribed to the Google Groups "Django users" 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/django-users?hl=en.

