Additional feed_dict deprecation issue.

This use of feed_dict was not properly corrected when changes were made
due to feed_dict deprecation.
This commit is contained in:
Bradley M. Kuhn 2015-03-31 08:43:13 -07:00
parent d8f86fed28
commit 02d97d1a72

View file

@ -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})