diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2007-10-19 01:42:21 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2007-10-19 01:42:21 +0000 |
| commit | 409ba6038dcb5ff40323a1a76e20c2157e6288fd (patch) | |
| tree | 846cbb468965f125ba4c691b371c844f15b11d75 | |
| parent | 088cb3c2f3dbef628b1ff5e1b66d216c946d61c7 (diff) | |
Fixed docstring style.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6529 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/comments/feeds.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/comments/feeds.py b/django/contrib/comments/feeds.py index 417e1d928a..901254f3c4 100644 --- a/django/contrib/comments/feeds.py +++ b/django/contrib/comments/feeds.py @@ -4,7 +4,7 @@ from django.contrib.syndication.feeds import Feed from django.contrib.sites.models import Site class LatestFreeCommentsFeed(Feed): - "Feed of latest comments on the current site." + """Feed of latest free comments on the current site.""" comments_class = FreeComment @@ -30,7 +30,7 @@ class LatestFreeCommentsFeed(Feed): return self.get_query_set()[:40] class LatestCommentsFeed(LatestFreeCommentsFeed): - """Feed of latest free comments on the current site""" + """Feed of latest comments on the current site.""" comments_class = Comment |
