diff --git a/mezzanine/core/models.py b/mezzanine/core/models.py index 07b5109b56..0f706149d5 100644 --- a/mezzanine/core/models.py +++ b/mezzanine/core/models.py @@ -1,4 +1,3 @@ - from datetime import datetime from django.contrib.contenttypes.generic import GenericForeignKey @@ -67,9 +66,6 @@ def save(self, update_site=False, *args, **kwargs): self.site = Site.objects.get_current() super(Slugged, self).save(*args, **kwargs) - def natural_key(self): - return (self.slug,) - def get_slug(self): """ Allows subclasses to implement their own slug creation logic.