Opened 19 years ago

Closed 19 years ago

Last modified 18 years ago

#485 closed defect (fixed)

[patch] small typo in feedgenerator.py

Reported by: eugene@… 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)

feedgenerator.patch (456 bytes ) - added by eugene@… 19 years ago.
patch in the file

Download all attachments as: .zip

Change History (2)

by eugene@…, 19 years ago

Attachment: feedgenerator.patch added

patch in the file

comment:1 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

Fixed in [635].

Note: See TracTickets for help on using tickets.
Back to Top