#485 closed defect (fixed)
[patch] small typo in feedgenerator.py
| Reported by: | Owned by: | Adrian Holovaty | |
|---|---|---|---|
| Component: | contrib.syndication | Version: | |
| Severity: | normal | Keywords: | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
startRssElement is used instead of writeRssElement
Index: feedgenerator.py
===================================================================
--- feedgenerator.py (revision 632)
+++ feedgenerator.py (working copy)
@@ -107,7 +107,7 @@
handler.endElement(u"channel")
class RssUserland091Feed(RssFeed):
- def startRssElement(self, handler):
+ def writeRssElement(self, handler):
handler.startElement(u"rss", {u"version": u"0.91"})
def writeRssItem(self, handler, item):
Attachments (1)
Note:
See TracTickets
for help on using tickets.
patch in the file