david / django-modelviews

Backup of an old repository with useful ideas. Initial goal: integrating REST to django admin (class-based views).

Clone this repository (size: 85.7 KB): HTTPS / SSH
$ hg clone http://code.welldev.org/django-modelviews/
commit 51: 0c73f83f8d5a
parent 50: 34b8eab184fe
branch: default
Fixed small typo.
Will Larson
21 months ago

Changed (Δ1 byte):

raw changeset »

generic/responders.py (1 lines added, 1 lines removed)

Up to file-list generic/responders.py:

@@ -181,7 +181,7 @@ class AtomResponder(FeedResponder):
181
181
182
182
183
183
class RssResponder(FeedResponder):
184
    mimetype = " application/rss+xml"
184
    mimetype = "application/rss+xml"
185
185
    feedgenerator_class = Rss201rev2Feed
186
186
187
187