diff --git a/www/conservancy/feeds.py b/www/conservancy/feeds.py index 214e938cf01502875dea0a6f683e0ce43bbc036b..263f99b7d40125f856a204af3f1e4e8b368afe98 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})