Fixed docstring style.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6529 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2007-10-19 01:42:21 +00:00
parent 088cb3c2f3
commit 409ba6038d
1 changed files with 2 additions and 2 deletions

View File

@ -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