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\")
It's one of those annoying functions that you might not want to re-implement:
from annoying.functions import get_object_or_None #... user = get_object_or_None(Content, name="baby")