mirror of https://github.com/django/django.git
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:
parent
284948b9cf
commit
ba3db4ca38
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue