diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-07-26 17:42:37 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-07-26 17:42:37 +0000 |
| commit | ba3db4ca38fc81f066e74bb77d54ef277d74d756 (patch) | |
| tree | e3994431ab75b621a6f62b7cc4b796ced759bbda | |
| parent | 284948b9cf275b792369405747c1e112a0b94a48 (diff) | |
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
| -rw-r--r-- | django/utils/feedgenerator.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/django/utils/feedgenerator.py b/django/utils/feedgenerator.py index dc5dd31fe4..20eb3a8ece 100644 --- a/django/utils/feedgenerator.py +++ b/django/utils/feedgenerator.py @@ -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 |
