File diff 60616f422694 → adf2229720fc
www/conservancy/apps/blog/models.py
Show inline comments
...
 
@@ -16,7 +16,7 @@ class EntryTag(models.Model):
 
    class Meta(object):
 
        db_table = 'techblog_entrytag' # legacy
 

	
 
    def __unicode__(self):
 
    def __str__(self):
 
        return self.label
 

	
 
    def get_absolute_url(self):
...
 
@@ -44,7 +44,7 @@ class Entry(models.Model, bsoup.SoupModelMixin):
 

	
 
    SOUP_ATTRS = ['body']
 

	
 
    def __unicode__(self):
 
    def __str__(self):
 
        return self.headline
 

	
 
    def get_absolute_url(self):