Skip to content

Commit

Permalink
Fixed #8475 -- Corrected typo in example code in syndication docs. Th…
Browse files Browse the repository at this point in the history
…anks to bernd for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8512 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Aug 24, 2008
1 parent 829a5c1 commit 87170c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ref/contrib/syndication.txt
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ For example, you might start implementing an iTunes RSS feed generator like so::
class iTunesFeed(Rss201rev2Feed):
def root_attibutes(self):
attrs = super(iTunesFeed, self).root_attibutes()
attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd
attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd'
return attrs

def add_root_elements(self, handler):
Expand Down

0 comments on commit 87170c7

Please sign in to comment.