Ticket #9556: syndication_docs_r9370.diff

File syndication_docs_r9370.diff, 674 bytes (added by sedden, 15 years ago)

Fix typo on iTunes example

  • docs/ref/contrib/syndication.txt

     
    976976For example, you might start implementing an iTunes RSS feed generator like so::
    977977
    978978    class iTunesFeed(Rss201rev2Feed):
    979         def root_attibutes(self):
    980             attrs = super(iTunesFeed, self).root_attibutes()
     979        def root_attributes(self):
     980            attrs = super(iTunesFeed, self).root_attributes()
    981981            attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd'
    982982            return attrs
    983983           
Back to Top