Skip to content

Commit

Permalink
rewrite docstring of Entry.html_content
Browse files Browse the repository at this point in the history
  • Loading branch information
Fantomas42 committed Feb 21, 2012
1 parent c12148b commit 69978eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zinnia/models.py
Expand Up @@ -167,7 +167,7 @@ class EntryAbstractClass(models.Model):

@property
def html_content(self):
"""Return the content correctly formatted"""
"""Return the Entry.content attribute formatted in HTML"""
if MARKUP_LANGUAGE == 'markdown':
return markdown(self.content, MARKDOWN_EXTENSIONS)
elif MARKUP_LANGUAGE == 'textile':
Expand Down

0 comments on commit 69978eb

Please sign in to comment.