Django

Code

Changeset 6529

Show
Ignore:
Timestamp:
10/18/07 20:42:21 (1 year ago)
Author:
gwilson
Message:

Fixed docstring style.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/comments/feeds.py

    r5609 r6529  
    55 
    66class LatestFreeCommentsFeed(Feed): 
    7     "Feed of latest comments on the current site.
     7    """Feed of latest free comments on the current site.""
    88 
    99    comments_class = FreeComment 
     
    3131 
    3232class LatestCommentsFeed(LatestFreeCommentsFeed): 
    33     """Feed of latest free comments on the current site""" 
     33    """Feed of latest comments on the current site.""" 
    3434 
    3535    comments_class = Comment