summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/locations/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/locations/models.py b/app/locations/models.py
index 9580132..5c5636a 100644
--- a/app/locations/models.py
+++ b/app/locations/models.py
@@ -523,5 +523,5 @@ class Track(models.Model):
self.location = Location.objects.filter(geometry__contains=self.point).get()
except Location.DoesNotExist:
raise forms.ValidationError("There is no location associated with that point, add it: %sadmin/locations/location/add/" % (settings.BASE_URL))
- super(Walk, self).save(*args, **kwargs)
+ super(Track, self).save(*args, **kwargs)