Removed Adrian's note in the docstring of django.utils.feedgenerator -- it's part of Django now

git-svn-id: http://code.djangoproject.com/svn/django/trunk@319 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-26 17:42:37 +00:00
parent 284948b9cf
commit ba3db4ca38
1 changed files with 1 additions and 4 deletions

View File

@ -1,9 +1,6 @@
"""
Syndication feed generation library -- used for generating RSS, etc.
By Adrian Holovaty
Released under the Python license
Sample usage:
>>> feed = feedgenerator.Rss201rev2Feed(
@ -89,7 +86,7 @@ class RssFeed(SyndicationFeed):
self.writeRssItem(handler, item)
self.endChannelElement(handler)
self.endRssElement(handler)
def writeRssElement(self, handler):
"Adds the <rss> element to handler, taking care of versioning, etc."
raise NotImplementedError