Ticket #10083: sites-patch.patch

File sites-patch.patch, 391 bytes (added by Seth Buntin, 16 years ago)
  • django/contrib/sites/models.py

     
    4040        ordering = ('domain',)
    4141
    4242    def __unicode__(self):
    43         return self.domain
     43        return self.name
    4444   
    4545    def delete(self):
    4646        pk = self.pk
Back to Top