Django

Code

Changeset 1295

Show
Ignore:
Timestamp:
11/19/05 22:53:28 (3 years ago)
Author:
adrian
Message:

Fixed #846 -- Fixed bug in docs/syndication_feeds.txt. Thanks, deric

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/syndication_feeds.txt

    r1228 r1295  
    329329This example illustrates all possible attributes and methods for a ``Feed`` class:: 
    330330 
    331     class ExampleFeed(rss.Feed): 
     331 
     332    from django.contrib.syndication.feeds import Feed 
     333    from django.utils import feedgenerator 
     334 
     335    class ExampleFeed(Feed): 
    332336 
    333337        # FEED TYPE -- Optional. This should be a class that subclasses