diff options
Diffstat (limited to 'app/sightings/models.py')
-rw-r--r-- | app/sightings/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/sightings/models.py b/app/sightings/models.py index 7527615..2a14e85 100644 --- a/app/sightings/models.py +++ b/app/sightings/models.py @@ -201,6 +201,8 @@ class Sighting(models.Model): self.location = Location.objects.filter(geometry__contains=self.point).get() except Location.MultipleObjectsReturned: for l in Location.objects.filter(geometry__contains=self.point): + print(l) + print(l.parent) if l.parent: self.location = l break |