diff --git a/www/conservancy/feeds.py b/www/conservancy/feeds.py index 214e938c..263f99b7 100644 --- a/www/conservancy/feeds.py +++ b/www/conservancy/feeds.py @@ -254,5 +254,5 @@ def view(request): """Listing of all available feeds """ - feeds = feed_dict.values() + feeds = (PressReleaseFeed, BlogFeed, OmnibusFeed) return render_to_response("feeds.html", {'feeds': feeds})