This is my code:
obj = Object1.objects.get(pk=1)
other_objs = ob1.other_objs.all()
other_objs is a ManyToManyField on the Object1 object.
When I execute this code:
print other_objs[0]
I do not get an other_obj (which should be a dict), I get a string based off the __unicode__ method in the other_obj class.
How can I get the other_obj dict rather than just the unicode string?