Changeset 6529
- Timestamp:
- 10/18/07 20:42:21 (1 year ago)
- Files:
-
- django/trunk/django/contrib/comments/feeds.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/comments/feeds.py
r5609 r6529 5 5 6 6 class LatestFreeCommentsFeed(Feed): 7 " Feed of latest comments on the current site."7 """Feed of latest free comments on the current site.""" 8 8 9 9 comments_class = FreeComment … … 31 31 32 32 class LatestCommentsFeed(LatestFreeCommentsFeed): 33 """Feed of latest free comments on the current site"""33 """Feed of latest comments on the current site.""" 34 34 35 35 comments_class = Comment
