From 8bde22d1bd8d16a48b35e2b51ee7f63015f80d7f Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Fri, 13 Aug 2010 11:05:52 -0400 Subject: [PATCH] Typo in story count history migration. --- apps/rss_feeds/migrations/0014_count_story_histories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/rss_feeds/migrations/0014_count_story_histories.py b/apps/rss_feeds/migrations/0014_count_story_histories.py index dfe4f9aae..230815a4b 100644 --- a/apps/rss_feeds/migrations/0014_count_story_histories.py +++ b/apps/rss_feeds/migrations/0014_count_story_histories.py @@ -10,7 +10,7 @@ class Migration(DataMigration): "Write your forwards methods here." from apps.rss_feeds.models import Feed for feed in Feed.objects.all(): - feed.stories_last_year = None + feed.story_count_history = None feed.save() try: feed.count_stories(verbose=True)