Use a filter:
Location.objects.filter(name="Paul").first()
Or import the exception:
from django.core.exceptions import MultipleObjectsReturned
...
try:
Location.objects.get(name="Paul")
except MultipleObjectsReturned:
Location.objects.filter(name="Paul").first()