From 02d97d1a7290ab7ccc11ca9444f233965ab65713 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Tue, 31 Mar 2015 08:43:13 -0700 Subject: [PATCH] Additional feed_dict deprecation issue. This use of feed_dict was not properly corrected when changes were made due to feed_dict deprecation. --- www/conservancy/feeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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})