When I ask the model manager to get an object, it raises DoesNotExist when there is no matching object.
DoesNotExist
go = Content.objects.get(name=\"baby\")
Since django 1.6 you can use first() method like so:
Content.objects.filter(name="baby").first()