Merge pull request #109 from kminkov/master

Add Django 1.8+ style Meta app_label to Avatar model
This commit is contained in:
Grant McConnaughey 2015-07-23 08:40:56 -05:00
commit 64e7effc28

View file

@ -70,6 +70,9 @@ class Avatar(models.Model):
blank=True)
date_uploaded = models.DateTimeField(default=now)
class Meta:
app_label = 'avatar'
def __unicode__(self):
return _(six.u('Avatar for %s')) % self.user